mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fix MSAN getservbyport() false positive Fix uninitialized CG(zend_lineno) Fix uninitialized EG(user_error_handler_error_reporting)
This commit is contained in:
commit
a5bd4ccb8c
2 changed files with 10 additions and 0 deletions
|
@ -117,6 +117,10 @@ PHPAPI php_basic_globals basic_globals;
|
|||
#include "streamsfuncs.h"
|
||||
#include "basic_functions_arginfo.h"
|
||||
|
||||
#if __has_feature(memory_sanitizer)
|
||||
# include <sanitizer/msan_interface.h>
|
||||
#endif
|
||||
|
||||
typedef struct _user_tick_function_entry {
|
||||
zend_fcall_info fci;
|
||||
zend_fcall_info_cache fci_cache;
|
||||
|
@ -2255,6 +2259,10 @@ PHP_FUNCTION(getservbyport)
|
|||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
/* MSAN false positive, getservbyport() is not properly intercepted. */
|
||||
#if __has_feature(memory_sanitizer)
|
||||
__msan_unpoison_string(serv->s_name);
|
||||
#endif
|
||||
RETURN_STRING(serv->s_name);
|
||||
}
|
||||
/* }}} */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue