diff options
author | Remi Collet <remi@php.net> | 2014-03-04 20:32:52 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2014-03-04 20:32:52 +0100 |
commit | a33759fd275b32ed0bbe89796fe2953b3cb0b41f (patch) | |
tree | a914ead808de7e4e10c573eb790038e4566510c1 /sapi/phpdbg/phpdbg.c | |
parent | 731013ee8e9cf405101d4fd584214fadb1c1d390 (diff) | |
download | php-git-a33759fd275b32ed0bbe89796fe2953b3cb0b41f.tar.gz |
Fixed Bug #66820 out-of-bounds memory access in fileinfo
Upstream fix:
https://github.com/glensc/file/commit/447558595a3650db2886cd2f416ad0beba965801
Notice, test changed, with upstream agreement:
-define OFFSET_OOB(n, o, i) ((n) < (o) || (i) >= ((n) - (o)))
+define OFFSET_OOB(n, o, i) ((n) < (o) || (i) > ((n) - (o)))
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
0 files changed, 0 insertions, 0 deletions