We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 226395a commit 5199686Copy full SHA for 5199686
NEWS
@@ -30,6 +30,8 @@ PHP NEWS
30
- Standard:
31
. Fixed bug #80654 (file_get_contents() maxlen fails above (2**31)-1 bytes).
32
(cmb)
33
+ . Fixed bug #80718 (ext/standard/dl.c fallback code path with syntax error).
34
+ (Nikita)
35
36
21 Jan 2021, PHP 8.0.2
37
ext/standard/dl.c
@@ -247,8 +247,9 @@ static void php_dl_error(const char *filename)
247
248
PHPAPI void *php_load_shlib(const char *path, char **errp)
249
{
250
- php_dl_error(filename);
251
- (*errp) = estrdup("No DL support");
+ php_dl_error(path);
+ (*errp) = estrdup("No DL support");
252
+ return NULL;
253
}
254
255
PHPAPI int php_load_extension(const char *filename, int type, int start_now)
0 commit comments