git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Flush the remaning chars in the input buffer after reading the
[ffmpeg.git]
/
ffmpeg.c
diff --git
a/ffmpeg.c
b/ffmpeg.c
index
57770e6
..
c4f910d
100644
(file)
--- a/
ffmpeg.c
+++ b/
ffmpeg.c
@@
-3404,6
+3404,8
@@
static void opt_output_file(const char *filename)
fprintf(stderr, "Not overwriting - exiting\n");
av_exit(1);
}
+ while (c != '\n' && c != EOF)
+ c = getchar();
}
else {
fprintf(stderr,"File '%s' already exists. Exiting.\n", filename);