[Mp4h-devel]CVS: mp4h/src mp4h.c,1.47,1.48
Brought to you by:
barbier
|
From: Denis B. <ba...@us...> - 2002-01-05 20:34:22
|
Update of /cvsroot/mp4h/mp4h/src
In directory usw-pr-cvs1:/tmp/cvs-serv10825/src
Modified Files:
mp4h.c
Log Message:
*) Do not abort with missing input files (05-Jan-2002):
Just print a warning and skip this file.
[Anders Dinsen]
Index: mp4h.c
===================================================================
RCS file: /cvsroot/mp4h/mp4h/src/mp4h.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- mp4h.c 2001/10/15 23:31:18 1.47
+++ mp4h.c 2002/01/05 20:34:19 1.48
@@ -473,7 +473,9 @@
if (fp == NULL)
{
error (0, errno, argv[optind]);
- abort ();
+ MP4HERROR ((warning_status, 0,
+ _("%s: file skipped"), argv[optind]));
+ continue;
}
else
{
|