diff options
author | Remi Collet <remi@php.net> | 2014-03-04 20:32:52 +0100 |
---|---|---|
committer | Julien Pauli <jpauli@php.net> | 2014-03-05 10:53:00 +0100 |
commit | 53c6b594f5a0dc1650acfef37d6282d15fea593f (patch) | |
tree | 8811464b5f87bccb5ece87cf5c95377016fa212e /main/php_variables.h | |
parent | 1677be7a30e5d4bf7dd452f9a76c277238f27b6f (diff) | |
download | php-git-53c6b594f5a0dc1650acfef37d6282d15fea593f.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 'main/php_variables.h')
0 files changed, 0 insertions, 0 deletions