. Fixed bug #75368 (mmap/munmap trashing on unlucky allocations). (Nikita,
Dmitry)
+- CLI:
+ . Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown
+ function). (Laruence)
+
- Exif:
. Fixed bug #75301 (Exif extension has built in revision version). (Peter
Kokot)
{
int decline = 0;
zend_file_handle zfd;
- char *old_cwd;
-
- ALLOCA_FLAG(use_heap)
- old_cwd = do_alloca(MAXPATHLEN, use_heap);
- old_cwd[0] = '\0';
- php_ignore_value(VCWD_GETCWD(old_cwd, MAXPATHLEN - 1));
zfd.type = ZEND_HANDLE_FILENAME;
zfd.filename = server->router;
}
} zend_end_try();
- if (old_cwd[0] != '\0') {
- php_ignore_value(VCWD_CHDIR(old_cwd));
- }
-
- free_alloca(old_cwd, use_heap);
-
return decline;
}
/* }}} */
if (router) {
size_t router_len = strlen(router);
- _router = pestrndup(router, router_len, 1);
- if (!_router) {
- retval = FAILURE;
- goto out;
+ if (!IS_ABSOLUTE_PATH(router, router_len)) {
+ _router = pemalloc(server->document_root_len + router_len + 2, 1);
+ if (!_router) {
+ retval = FAILURE;
+ goto out;
+ }
+ snprintf(_router,
+ server->document_root_len + router_len + 2, "%s%c%s", server->document_root, DEFAULT_SLASH, router);
+ } else {
+ _router = pestrndup(router, router_len, 1);
+ if (!_router) {
+ retval = FAILURE;
+ goto out;
+ }
}
server->router = _router;
server->router_len = router_len;