[FFmpeg-cvslog] tree-test: Don't return restricted exit codes

Derek Buitenhuis git at videolan.org
Thu Oct 24 11:54:37 CEST 2013


ffmpeg | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Tue Oct 22 19:08:43 2013 +0100| [5dfdffeb6fe9c43a496a4c1949cf9162474c7418] | committer: Derek Buitenhuis

tree-test: Don't return restricted exit codes

Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5dfdffeb6fe9c43a496a4c1949cf9162474c7418
---

 libavutil/tree.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavutil/tree.c b/libavutil/tree.c
index e1b3197..d0b67ef 100644
--- a/libavutil/tree.c
+++ b/libavutil/tree.c
@@ -225,7 +225,7 @@ int main(int argc, char **argv)
         if (check(root) > 999) {
             av_log(NULL, AV_LOG_ERROR, "FATAL error %d\n", i);
             print(root, 0);
-            return -1;
+            return 1;
         }
         av_log(NULL, AV_LOG_DEBUG, "inserting %4d\n", (int)j);
 
@@ -233,7 +233,7 @@ int main(int argc, char **argv)
             node = av_tree_node_alloc();
         if (!node) {
             av_log(NULL, AV_LOG_ERROR, "Memory allocation failure.\n");
-            return AVERROR(ENOMEM);
+            return 1;
         }
         av_tree_insert(&root, (void *)(j + 1), cmp, &node);
 



More information about the ffmpeg-cvslog mailing list