Fix SVACE issue 56/68156/1 accepted/tizen/common/20160511.141739 accepted/tizen/ivi/20160511.080240 accepted/tizen/mobile/20160511.080147 accepted/tizen/tv/20160511.080203 accepted/tizen/wearable/20160511.080220 submit/tizen/20160510.074726
authorGilbok Lee <gilbok.lee@samsung.com>
Mon, 2 May 2016 23:52:33 +0000 (08:52 +0900)
committerGilbok Lee <gilbok.lee@samsung.com>
Mon, 2 May 2016 23:52:33 +0000 (08:52 +0900)
Change-Id: Ic4113b4189905632c026d2c8f8dba590bd9333fc
Signed-off-by: Gilbok Lee <gilbok.lee@samsung.com>
test/mediamuxer_test_with_mediacodec.c

index 62582b9..5641821 100644 (file)
@@ -125,7 +125,7 @@ void input_raw_filepath(char *filename)
        int len = strlen(filename);
        int i = 0;
 
-       if (len < 0 || len > MAX_STRING_LEN)
+       if (len <= 0 || len > MAX_STRING_LEN)
                return;
 
        for (i = 0; i < g_handle_num; i++) {