diff options
author | Stanislav Malyshev <stas@php.net> | 2016-10-03 00:12:14 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2016-10-03 00:12:14 -0700 |
commit | ef801b9bf96fb46b0418772a11a9b38f52cd93b4 (patch) | |
tree | c192acc812a7a06ad3f14f33f67e1e2bbd72b93b /ext/imap/php_imap.c | |
parent | 40e7baab3c90001beee4c8f0ed0ef79ad18ee0d6 (diff) | |
download | php-git-ef801b9bf96fb46b0418772a11a9b38f52cd93b4.tar.gz |
Fix bug #73208 - another missing length check
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 8fe9de9ea8..564473b738 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -2523,7 +2523,7 @@ PHP_FUNCTION(imap_8bit) RETURN_FALSE; } - RETVAL_STRINGL(decode, newlength, 1); + RETVAL_STRINGL_CHECK(decode, newlength, 1); fs_give((void**) &decode); } /* }}} */ |