Rob Richards wrote:
Index: streams.c
===================================================================
RCS file: /repository/php-src/main/streams/streams.c,v
retrieving revision 1.68
diff -r1.68 streams.c
1496c1496
<   if (protocol && path[n+1] == '/' && path[n+2] == '/' && path[n+4] !=
':') {
---

if (protocol && path[n+1] == '/' && path[n+2] == '/' && path[n+4] != ':'

&& path[n+3] != '/') {

I'm not an export on that piece of code but passing file:// to this function could cause problems.
You should at least move the path[n+3] != '/' to before the n+4 test and I think you should also make sure that n+3 is not '\0' as otherwise n+4 could be beyond the end of the string, no?


Just my $.2,
- Chris

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to