Commit 346db900 authored by Thorsten Jordan's avatar Thorsten Jordan Committed by Benoit Fouet

Check context before accessing its field.

Patch by Thorsten Jordan: tjordan macrosystem de

Originally committed as revision 10939 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 12877faf
...@@ -133,6 +133,7 @@ offset_t url_seek(URLContext *h, offset_t pos, int whence) ...@@ -133,6 +133,7 @@ offset_t url_seek(URLContext *h, offset_t pos, int whence)
int url_close(URLContext *h) int url_close(URLContext *h)
{ {
int ret; int ret;
if (!h) return 0; /* can happen when url_open fails */
ret = h->prot->url_close(h); ret = h->prot->url_close(h);
av_free(h); av_free(h);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment