diff options
author | Marcus Boerger <helly@php.net> | 2003-05-19 18:48:15 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-05-19 18:48:15 +0000 |
commit | f10a7b90b2f74514ab9e7e16b8b5bd3c09a34818 (patch) | |
tree | fff8223572a234a92990a1250f0ccb3f02ebfbbf /main/streams/plain_wrapper.c | |
parent | 1b0fdbf63ab5d3953f6ad1cbbd61d34673cd5d25 (diff) | |
download | php-git-f10a7b90b2f74514ab9e7e16b8b5bd3c09a34818.tar.gz |
Fix warning
Diffstat (limited to 'main/streams/plain_wrapper.c')
-rw-r--r-- | main/streams/plain_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c index 98e17c72f3..075cc70e45 100644 --- a/main/streams/plain_wrapper.c +++ b/main/streams/plain_wrapper.c @@ -896,7 +896,7 @@ static int php_plain_files_unlink(php_stream_wrapper *wrapper, char *url, int op zval funcname; zval *retval = NULL; - if (p = strstr(url, "://")) { + if ((p = strstr(url, "://")) != NULL) { url = p + 3; } |