Skip to content

Commit 9c488ef

Browse files
author
Derick Rethans
committed
- MFH: Fixed TSRM problem in latest commit.
1 parent 5a3baf6 commit 9c488ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/rfc1867.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler)
10311031
php_mb_gpc_encoding_converter(&filename, &str_len, 1, NULL, NULL TSRMLS_CC);
10321032
}
10331033
s = php_mb_strrchr(filename, '\\' TSRMLS_CC);
1034-
if (tmp = php_mb_strrchr(filename, '/')) {
1034+
if (tmp = php_mb_strrchr(filename, '/' TSRMLS_CC)) {
10351035
s = tmp;
10361036
}
10371037
num_vars--;

0 commit comments

Comments
 (0)