From: Pierre Joye Date: Thu, 20 Jan 2011 06:32:59 +0000 (+0000) Subject: - no need of assert here X-Git-Tag: php-5.3.6RC1~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f3100976f837f03ad5bca1c38b81075e2fcac16;p=php - no need of assert here --- diff --git a/main/streams/cast.c b/main/streams/cast.c index 6c3854b934..debbd82707 100644 --- a/main/streams/cast.c +++ b/main/streams/cast.c @@ -366,8 +366,9 @@ PHPAPI FILE * _php_stream_open_wrapper_as_file(char *path, char *mode, int optio /* {{{ php_stream_make_seekable */ PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC TSRMLS_DC) { - assert(newstream != NULL); - + if (newstream == NULL) { + return PHP_STREAM_FAILED; + } *newstream = NULL; if (((flags & PHP_STREAM_FORCE_CONVERSION) == 0) && origstream->ops->seek != NULL) {