mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +08:00
fix invalid read when trimming empty string
This commit is contained in:
parent
065862a750
commit
bb60122c2f
@ -107,8 +107,10 @@
|
||||
if (len < 1) { \
|
||||
RETURN_VALIDATION_FAILED \
|
||||
} \
|
||||
while (p[len-1] == ' ' || p[len-1] == '\t' || p[len-1] == '\r' || p[len-1] == '\v' || p[len-1] == '\n') { \
|
||||
len--; \
|
||||
if (len > 0) { \
|
||||
while (p[len-1] == ' ' || p[len-1] == '\t' || p[len-1] == '\r' || p[len-1] == '\v' || p[len-1] == '\n') { \
|
||||
len--; \
|
||||
} \
|
||||
} \
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user