diff mencoder.c @ 2887:bc648c6a464a

fixes a segfault if file specified in -o can't be accessed (bug found by Colin Marquardt <colin@marquardt-home.de>)
author pl
date Tue, 13 Nov 2001 23:43:33 +0000
parents d69598d847e0
children 283eab7c4c8e
line wrap: on
line diff
--- a/mencoder.c	Tue Nov 13 23:17:31 2001 +0000
+++ b/mencoder.c	Tue Nov 13 23:43:33 2001 +0000
@@ -412,6 +412,11 @@
 
 // set up output file:
 muxer_f=fopen(out_filename,"wb");
+if(!muxer_f) {
+  printf("Cannot open output file '%s'\n", out_filename);
+  exit(1);
+}
+
 muxer=aviwrite_new_muxer();
 
 // ============= VIDEO ===============