Module: libav
Branch: master
Commit: 03f2de5856ec8571fcf5f4cf6dccc713294af545

Author:    Martin Storsjö <[email protected]>
Committer: Martin Storsjö <[email protected]>
Date:      Thu Jan 16 09:58:03 2014 +0200

aviocat: Check the argv array length before reading element i+1

Signed-off-by: Martin Storsjö <[email protected]>

---

 tools/aviocat.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/aviocat.c b/tools/aviocat.c
index 52a96bd..9284db1 100644
--- a/tools/aviocat.c
+++ b/tools/aviocat.c
@@ -43,7 +43,7 @@ int main(int argc, char **argv)
     avformat_network_init();
 
     for (i = 1; i < argc; i++) {
-        if (!strcmp(argv[i], "-b")) {
+        if (!strcmp(argv[i], "-b") && i + 1 < argc) {
             bps = atoi(argv[i + 1]);
             i++;
         } else if (!input_url) {

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to