mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix return
This commit is contained in:
parent
6a624c1dfd
commit
e4a664ecf8
1 changed files with 2 additions and 2 deletions
|
@ -343,7 +343,7 @@ static void php_load_zend_extension_cb(void *arg)
|
|||
char *err;
|
||||
if (!php_win32_image_compatible(filename, NULL, &err)) {
|
||||
php_error(E_CORE_WARNING, err);
|
||||
return FAILURE;
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
zend_load_extension(filename);
|
||||
|
@ -397,7 +397,7 @@ static void php_load_zend_extension_cb(void *arg)
|
|||
efree(err1);
|
||||
efree(libpath);
|
||||
DL_UNLOAD(handle);
|
||||
return FAILURE;
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue