summaryrefslogtreecommitdiff
path: root/main/rfc1867.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2004-05-21 08:16:13 +0000
committerDerick Rethans <derick@php.net>2004-05-21 08:16:13 +0000
commitcb1e4ab6c8f93714cf385881d315f0a3bdb6c033 (patch)
tree29aa9e10e556ea5d687bf6883c8841c2290d6ea4 /main/rfc1867.c
parentbc7ad69fbc5622a833905b4488c6cbf29f222d83 (diff)
downloadphp-git-cb1e4ab6c8f93714cf385881d315f0a3bdb6c033.tar.gz
- Fixed TSRM problem in latest commit.
Diffstat (limited to 'main/rfc1867.c')
-rw-r--r--main/rfc1867.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c
index 54f1d53673..1cf76f4f93 100644
--- a/main/rfc1867.c
+++ b/main/rfc1867.c
@@ -1044,7 +1044,7 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler)
php_mb_gpc_encoding_converter(&filename, &str_len, 1, NULL, NULL TSRMLS_CC);
}
s = php_mb_strrchr(filename, '\\' TSRMLS_CC);
- if (tmp = php_mb_strrchr(filename, '/')) {
+ if (tmp = php_mb_strrchr(filename, '/' TSRMLS_CC)) {
s = tmp;
}
num_vars--;