[FIX] Add a missing g_clear_error() in unittest_sink.cpp
authorDongju Chae <dongju.chae@samsung.com>
Wed, 11 Dec 2019 01:15:27 +0000 (10:15 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Wed, 11 Dec 2019 02:00:18 +0000 (11:00 +0900)
This commit adds a missing g_clear_error() in unittest_sink.cpp.

Signed-off-by: Dongju Chae <dongju.chae@samsung.com>
tests/nnstreamer_sink/unittest_sink.cpp

index 7ac60f3..f5b6d1e 100644 (file)
@@ -4809,6 +4809,7 @@ main (int argc, char **argv)
 
   if (!g_option_context_parse (optionctx, &argc, &argv, &error)) {
     g_print ("option parsing failed: %s\n", error->message);
+    g_clear_error (&error);
   }
 
   if (jitter_cmd_arg != NULL) {