mirror of
https://github.com/php/php-src.git
synced 2026-03-27 01:32:22 +01:00
Fixed bug #51336
This commit is contained in:
3
NEWS
3
NEWS
@@ -157,6 +157,9 @@
|
||||
. Fixed bug #53885 (ZipArchive segfault with FL_UNCHANGED on empty archive).
|
||||
(Stas, Maksymilian Arciemowicz).
|
||||
|
||||
- Fixed bug #51336 (snmprealwalk (snmp v1) does not handle end of OID tree correctly)
|
||||
(Boris Lytochkin)
|
||||
|
||||
06 Jan 2011, PHP 5.3.5
|
||||
- Fixed Bug #53632 (infinite loop with x87 fpu). (CVE-2010-4645) (Scott,
|
||||
Rasmus)
|
||||
|
||||
@@ -689,7 +689,7 @@ retry:
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (st != SNMP_CMD_WALK || response->errstat != SNMP_ERR_NOSUCHNAME) {
|
||||
if ((st != SNMP_CMD_WALK && st != SNMP_CMD_REALWALK) || response->errstat != SNMP_ERR_NOSUCHNAME) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error in packet: %s", snmp_errstring(response->errstat));
|
||||
if (response->errstat == SNMP_ERR_NOSUCHNAME) {
|
||||
for (count=1, vars = response->variables; vars && count != response->errindex;
|
||||
|
||||
Reference in New Issue
Block a user