Commit 293ed23f authored by Michael Niedermayer's avatar Michael Niedermayer

NULL pointers ...

Originally committed as revision 3080 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4b85a28f
...@@ -48,6 +48,9 @@ int match_ext(const char *filename, const char *extensions) ...@@ -48,6 +48,9 @@ int match_ext(const char *filename, const char *extensions)
const char *ext, *p; const char *ext, *p;
char ext1[32], *q; char ext1[32], *q;
if(!filename)
return 0;
ext = strrchr(filename, '.'); ext = strrchr(filename, '.');
if (ext) { if (ext) {
ext++; ext++;
...@@ -264,6 +267,8 @@ void fifo_write(FifoBuffer *f, uint8_t *buf, int size, uint8_t **wptr_ptr) ...@@ -264,6 +267,8 @@ void fifo_write(FifoBuffer *f, uint8_t *buf, int size, uint8_t **wptr_ptr)
int filename_number_test(const char *filename) int filename_number_test(const char *filename)
{ {
char buf[1024]; char buf[1024];
if(!filename)
return -1;
return get_frame_filename(buf, sizeof(buf), filename, 1); return get_frame_filename(buf, sizeof(buf), filename, 1);
} }
......
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