Browse Source

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
tags/v0.5
Thorsten Jordan Benoit Fouet 18 years ago
parent
commit
346db900bf
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/avio.c

+ 1
- 0
libavformat/avio.c View File

@@ -133,6 +133,7 @@ offset_t url_seek(URLContext *h, offset_t pos, int whence)
int url_close(URLContext *h)
{
int ret;
if (!h) return 0; /* can happen when url_open fails */

ret = h->prot->url_close(h);
av_free(h);


Loading…
Cancel
Save