rest-0.10.2-4.fc44

List of Findings

Error: COMPILER_WARNING (CWE-477): [#def1]
librest-0.10.2/examples/demo/demo-main.c: scope_hint: In function ‘main’
librest-0.10.2/examples/demo/demo-main.c:89:3: warning[-Wdeprecated-declarations]: ‘G_APPLICATION_FLAGS_NONE’ is deprecated: Use 'G_APPLICATION_DEFAULT_FLAGS' instead
#   89 |   AdwApplication *app = adw_application_new ("org.gnome.RestDemo", G_APPLICATION_FLAGS_NONE);
#      |   ^~~~~~~~~~~~~~
/usr/include/glib-2.0/gio/giotypes.h:30: included_from: Included from here.
/usr/include/glib-2.0/gio/gio.h:28: included_from: Included from here.
/usr/include/gtk-4.0/gtk/css/gtkcsssection.h:24: included_from: Included from here.
/usr/include/gtk-4.0/gtk/css/gtkcss.h:36: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtk.h:29: included_from: Included from here.
librest-0.10.2/examples/demo/demo-main.c:21: included_from: Included from here.
/usr/include/glib-2.0/gio/gioenums.h:1563:3: note: declared here
# 1563 |   G_APPLICATION_FLAGS_NONE GIO_DEPRECATED_ENUMERATOR_IN_2_74_FOR(G_APPLICATION_DEFAULT_FLAGS),
#      |   ^~~~~~~~~~~~~~~~~~~~~~~~
#   87|     };
#   88|   
#   89|->   AdwApplication *app = adw_application_new ("org.gnome.RestDemo", G_APPLICATION_FLAGS_NONE);
#   90|     g_action_map_add_action_entries (G_ACTION_MAP (app),
#   91|                                      app_entries, G_N_ELEMENTS (app_entries),

Error: COMPILER_WARNING (CWE-477): [#def2]
librest-0.10.2/examples/demo/demo-main.c:89:3: warning[-Wdeprecated-declarations]: ‘G_APPLICATION_FLAGS_NONE’ is deprecated: Use 'G_APPLICATION_DEFAULT_FLAGS' instead
#   87|     };
#   88|   
#   89|->   AdwApplication *app = adw_application_new ("org.gnome.RestDemo", G_APPLICATION_FLAGS_NONE);
#   90|     g_action_map_add_action_entries (G_ACTION_MAP (app),
#   91|                                      app_entries, G_N_ELEMENTS (app_entries),

Error: COMPILER_WARNING (CWE-477): [#def3]
librest-0.10.2/examples/demo/demo-rest-page.c: scope_hint: In function ‘oauth2_dialog_response’
librest-0.10.2/examples/demo/demo-rest-page.c:215:9: warning[-Wdeprecated-declarations]: ‘gtk_dialog_get_content_area’ is deprecated
#  215 |         GtkWidget *content_area = gtk_dialog_get_content_area (dialog);
#      |         ^~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkappchooserdialog.h:31: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtk.h:44: included_from: Included from here.
librest-0.10.2/examples/demo/demo-rest-page.h:23: included_from: Included from here.
librest-0.10.2/examples/demo/demo-rest-page.c:21: included_from: Included from here.
/usr/include/gtk-4.0/gtk/deprecated/gtkdialog.h:176:13: note: declared here
#  176 | GtkWidget * gtk_dialog_get_content_area (GtkDialog *dialog);
#      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#  213|         {
#  214|           const gchar *code = NULL;
#  215|->         GtkWidget *content_area = gtk_dialog_get_content_area (dialog);
#  216|           GtkWidget *box = gtk_widget_get_first_child (content_area);
#  217|           GtkWidget *entry = gtk_widget_get_last_child (box);

Error: COMPILER_WARNING (CWE-477): [#def4]
librest-0.10.2/examples/demo/demo-rest-page.c:215:9: warning[-Wdeprecated-declarations]: ‘gtk_dialog_get_content_area’ is deprecated
#  213|         {
#  214|           const gchar *code = NULL;
#  215|->         GtkWidget *content_area = gtk_dialog_get_content_area (dialog);
#  216|           GtkWidget *box = gtk_widget_get_first_child (content_area);
#  217|           GtkWidget *entry = gtk_widget_get_last_child (box);

Error: COMPILER_WARNING (CWE-477): [#def5]
librest-0.10.2/examples/demo/demo-rest-page.c: scope_hint: In function ‘demo_rest_page_create_oauth2_dialog’
librest-0.10.2/examples/demo/demo-rest-page.c:243:3: warning[-Wdeprecated-declarations]: ‘gtk_dialog_new_with_buttons’ is deprecated
#  243 |   dialog = gtk_dialog_new_with_buttons ("Get Code...",
#      |   ^~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkdialog.h:137:12: note: declared here
#  137 | GtkWidget* gtk_dialog_new_with_buttons (const char      *title,
#      |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#  241|     g_autofree char *token_str = NULL;
#  242|   
#  243|->   dialog = gtk_dialog_new_with_buttons ("Get Code...",
#  244|                                           GTK_WINDOW (gtk_widget_get_root (GTK_WIDGET (self))),
#  245|                                           GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_USE_HEADER_BAR,

Error: COMPILER_WARNING (CWE-477): [#def6]
librest-0.10.2/examples/demo/demo-rest-page.c:243:3: warning[-Wdeprecated-declarations]: ‘gtk_dialog_new_with_buttons’ is deprecated
#  241|     g_autofree char *token_str = NULL;
#  242|   
#  243|->   dialog = gtk_dialog_new_with_buttons ("Get Code...",
#  244|                                           GTK_WINDOW (gtk_widget_get_root (GTK_WIDGET (self))),
#  245|                                           GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_USE_HEADER_BAR,

Error: COMPILER_WARNING (CWE-477): [#def7]
librest-0.10.2/examples/demo/demo-rest-page.c:252:3: warning[-Wdeprecated-declarations]: ‘gtk_dialog_get_content_area’ is deprecated
#  252 |   content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
#      |   ^~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkdialog.h:176:13: note: declared here
#  176 | GtkWidget * gtk_dialog_get_content_area (GtkDialog *dialog);
#      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#  250|                                           NULL);
#  251|   
#  252|->   content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
#  253|     gtk_widget_set_margin_top (content_area, 6);
#  254|     gtk_widget_set_margin_start (content_area, 6);

Error: COMPILER_WARNING (CWE-477): [#def8]
librest-0.10.2/examples/demo/demo-rest-page.c:252:3: warning[-Wdeprecated-declarations]: ‘gtk_dialog_get_content_area’ is deprecated
#  250|                                           NULL);
#  251|   
#  252|->   content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
#  253|     gtk_widget_set_margin_top (content_area, 6);
#  254|     gtk_widget_set_margin_start (content_area, 6);

Error: COMPILER_WARNING (CWE-477): [#def9]
librest-0.10.2/examples/demo/demo-rest-page.c: scope_hint: In function ‘on_oauth2_get_access_token_clicked’
librest-0.10.2/examples/demo/demo-rest-page.c:308:3: warning[-Wdeprecated-declarations]: ‘gtk_widget_show’ is deprecated: Use 'gtk_widget_set_visible or gtk_window_present' instead
#  308 |   gtk_widget_show (dialog);
#      |   ^~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/gtkapplication.h:26: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtkwindow.h:32: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtkaboutdialog.h:29: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtk.h:33: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtkwidget.h:274:12: note: declared here
#  274 | void       gtk_widget_show                (GtkWidget           *widget);
#      |            ^~~~~~~~~~~~~~~
#  306|     dialog = demo_rest_page_create_oauth2_dialog (self, self->oauth2_proxy);
#  307|   
#  308|->   gtk_widget_show (dialog);
#  309|     set_oauth_btn_active (self, btn, self->oauth2_proxy, TRUE);
#  310|   }

Error: COMPILER_WARNING (CWE-477): [#def10]
librest-0.10.2/examples/demo/demo-rest-page.c:308:3: warning[-Wdeprecated-declarations]: ‘gtk_widget_show’ is deprecated: Use 'gtk_widget_set_visible or gtk_window_present' instead
#  306|     dialog = demo_rest_page_create_oauth2_dialog (self, self->oauth2_proxy);
#  307|   
#  308|->   gtk_widget_show (dialog);
#  309|     set_oauth_btn_active (self, btn, self->oauth2_proxy, TRUE);
#  310|   }

Error: COMPILER_WARNING (CWE-477): [#def11]
librest-0.10.2/examples/demo/demo-table.c: scope_hint: In function ‘create_dummy_row’
librest-0.10.2/examples/demo/demo-table.c:117:3: warning[-Wdeprecated-declarations]: ‘gtk_style_context_add_class’ is deprecated
#  117 |   gtk_style_context_add_class (gtk_widget_get_style_context (label), "dim-label");
#      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/gtk.h:269: included_from: Included from here.
librest-0.10.2/examples/demo/demo-table.h:23: included_from: Included from here.
librest-0.10.2/examples/demo/demo-table.c:21: included_from: Included from here.
/usr/include/gtk-4.0/gtk/deprecated/gtkstylecontext.h:90:10: note: declared here
#   90 | void     gtk_style_context_add_class    (GtkStyleContext *context,
#      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#  115|                           NULL);
#  116|     g_object_bind_property (self, "title", label, "label", G_BINDING_DEFAULT);
#  117|->   gtk_style_context_add_class (gtk_widget_get_style_context (label), "dim-label");
#  118|   
#  119|     row = g_object_new (GTK_TYPE_LIST_BOX_ROW,

Error: COMPILER_WARNING (CWE-477): [#def12]
librest-0.10.2/examples/demo/demo-table.c:117:3: warning[-Wdeprecated-declarations]: ‘gtk_style_context_add_class’ is deprecated
#  115|                           NULL);
#  116|     g_object_bind_property (self, "title", label, "label", G_BINDING_DEFAULT);
#  117|->   gtk_style_context_add_class (gtk_widget_get_style_context (label), "dim-label");
#  118|   
#  119|     row = g_object_new (GTK_TYPE_LIST_BOX_ROW,

Error: COMPILER_WARNING (CWE-477): [#def13]
librest-0.10.2/examples/demo/demo-table.c:117:3: warning[-Wdeprecated-declarations]: ‘gtk_widget_get_style_context’ is deprecated
#  117 |   gtk_style_context_add_class (gtk_widget_get_style_context (label), "dim-label");
#      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/gtkapplication.h:26: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtkwindow.h:32: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtkaboutdialog.h:29: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtk.h:33: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtkwidget.h:713:19: note: declared here
#  713 | GtkStyleContext * gtk_widget_get_style_context (GtkWidget *widget);
#      |                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  115|                           NULL);
#  116|     g_object_bind_property (self, "title", label, "label", G_BINDING_DEFAULT);
#  117|->   gtk_style_context_add_class (gtk_widget_get_style_context (label), "dim-label");
#  118|   
#  119|     row = g_object_new (GTK_TYPE_LIST_BOX_ROW,

Error: COMPILER_WARNING (CWE-477): [#def14]
librest-0.10.2/examples/demo/demo-table.c:117:3: warning[-Wdeprecated-declarations]: ‘gtk_widget_get_style_context’ is deprecated
#  115|                           NULL);
#  116|     g_object_bind_property (self, "title", label, "label", G_BINDING_DEFAULT);
#  117|->   gtk_style_context_add_class (gtk_widget_get_style_context (label), "dim-label");
#  118|   
#  119|     row = g_object_new (GTK_TYPE_LIST_BOX_ROW,

Error: COMPILER_WARNING (CWE-252): [#def15]
librest-0.10.2/examples/test-raw.c: scope_hint: In function ‘proxy_call_async_cb’
librest-0.10.2/examples/test-raw.c:37:3: warning[-Wunused-result]: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’
#   37 |   write (1, payload, len);
#      |   ^~~~~~~~~~~~~~~~~~~~~~~
#   35|     payload = rest_proxy_call_get_payload (call);
#   36|     len = rest_proxy_call_get_payload_length (call);
#   37|->   write (1, payload, len);
#   38|     g_main_loop_quit ((GMainLoop *)user_data);
#   39|   }

Error: COMPILER_WARNING (CWE-252): [#def16]
librest-0.10.2/examples/test-raw.c: scope_hint: In function ‘main’
librest-0.10.2/examples/test-raw.c:70:3: warning[-Wunused-result]: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’
#   70 |   write (1, payload, len);
#      |   ^~~~~~~~~~~~~~~~~~~~~~~
#   68|     payload = rest_proxy_call_get_payload (call);
#   69|     len = rest_proxy_call_get_payload_length (call);
#   70|->   write (1, payload, len);
#   71|   
#   72|     g_object_unref (call);

Error: COMPILER_WARNING (CWE-252): [#def17]
librest-0.10.2/examples/test-xml.c: scope_hint: In function ‘proxy_call_raw_async_cb’
librest-0.10.2/examples/test-xml.c:100:3: warning[-Wunused-result]: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’
#  100 |   write (1, payload, len);
#      |   ^~~~~~~~~~~~~~~~~~~~~~~
#   98|     payload = rest_proxy_call_get_payload (call);
#   99|     len = rest_proxy_call_get_payload_length (call);
#  100|->   write (1, payload, len);
#  101|     node = rest_xml_parser_parse_from_data (parser, payload, len);
#  102|   

Error: GCC_ANALYZER_WARNING (CWE-775): [#def18]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def19]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def20]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def21]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def22]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def23]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def24]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def25]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def26]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:93:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def27]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:93:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def28]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:93:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def29]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:93:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def30]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def31]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def32]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def33]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def34]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:102:16: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def35]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:102:16: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def36]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:102:16: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def37]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:102:16: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-404): [#def38]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:120:9: warning[-Wanalyzer-va-list-leak]: missing call to ‘va_end’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:599:1: enter_function: entry to ‘dump_error_quark’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:601:3: call_function: calling ‘escaped_printf’ from ‘dump_error_quark’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def39]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def40]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def41]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def42]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def43]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_true: following ‘true’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:685:25: branch_true: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/199/codeFlows/0/threadFlows/0/locations/4)

Error: GCC_ANALYZER_WARNING (CWE-401): [#def44]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_true: following ‘true’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:685:25: branch_true: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was allocated at [(5)](sarif:/runs/0/results/200/codeFlows/0/threadFlows/0/locations/4)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def45]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:41: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_true: following ‘true’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:685:25: branch_true: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/203/codeFlows/0/threadFlows/0/locations/4)

Error: GCC_ANALYZER_WARNING (CWE-401): [#def46]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:41: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_true: following ‘true’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:685:25: branch_true: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was allocated at [(5)](sarif:/runs/0/results/204/codeFlows/0/threadFlows/0/locations/4)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def47]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(6)](sarif:/runs/0/results/205/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def48]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was opened at [(8)](sarif:/runs/0/results/206/codeFlows/0/threadFlows/0/locations/7)

Error: GCC_ANALYZER_WARNING (CWE-401): [#def49]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was allocated at [(6)](sarif:/runs/0/results/207/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-401): [#def50]
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectfhlgp6sb/RestExtras-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was allocated at [(8)](sarif:/runs/0/results/208/codeFlows/0/threadFlows/0/locations/7)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def51]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def52]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def53]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def54]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def55]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def56]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def57]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def58]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def59]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:93:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def60]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:93:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def61]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:93:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def62]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:93:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def63]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def64]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def65]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def66]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def67]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:102:16: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def68]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:102:16: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def69]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:102:16: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def70]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:102:16: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-404): [#def71]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:120:9: warning[-Wanalyzer-va-list-leak]: missing call to ‘va_end’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:599:1: enter_function: entry to ‘dump_error_quark’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:601:3: call_function: calling ‘escaped_printf’ from ‘dump_error_quark’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def72]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def73]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def74]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def75]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def76]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_true: following ‘true’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:685:25: branch_true: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/199/codeFlows/0/threadFlows/0/locations/4)

Error: GCC_ANALYZER_WARNING (CWE-401): [#def77]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_true: following ‘true’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:685:25: branch_true: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was allocated at [(5)](sarif:/runs/0/results/200/codeFlows/0/threadFlows/0/locations/4)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def78]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:41: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_true: following ‘true’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:685:25: branch_true: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/203/codeFlows/0/threadFlows/0/locations/4)

Error: GCC_ANALYZER_WARNING (CWE-401): [#def79]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:41: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_true: following ‘true’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:685:25: branch_true: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was allocated at [(5)](sarif:/runs/0/results/204/codeFlows/0/threadFlows/0/locations/4)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def80]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(6)](sarif:/runs/0/results/205/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def81]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_resource: opened here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was opened at [(8)](sarif:/runs/0/results/206/codeFlows/0/threadFlows/0/locations/7)

Error: GCC_ANALYZER_WARNING (CWE-401): [#def82]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was allocated at [(6)](sarif:/runs/0/results/207/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-401): [#def83]
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:645:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:654:15: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:658:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:669:11: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:670:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:682:12: acquire_memory: allocated here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:683:6: branch_false: following ‘false’ branch...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: branch_false: ...to here
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
librest-0.10.2/redhat-linux-build/tmp-introspectrq350u6w/Rest-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was allocated at [(8)](sarif:/runs/0/results/208/codeFlows/0/threadFlows/0/locations/7)

Error: GCC_ANALYZER_WARNING (CWE-457): [#def84]
librest-0.10.2/rest/rest-params.h:69:1: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘params’
librest-0.10.2/tests/params.c:89:1: enter_function: entry to ‘test_params_is_string’
librest-0.10.2/tests/params.c:112:12: throw: if ‘rest_params_new’ throws an exception...
librest-0.10.2/tests/params.c:93:20: call_function: calling ‘g_autoptr_cleanup_generic_gfree’ from ‘test_params_is_string’
librest-0.10.2/tests/params.c:92:25: call_function: inlined call to ‘glib_autoptr_cleanup_RestParams’ from ‘test_params_is_string’
#   67|                                                 RestParam      **param);
#   68|   
#   69|-> G_DEFINE_AUTOPTR_CLEANUP_FUNC (RestParams, rest_params_unref)
#   70|   
#   71|   G_END_DECLS

Error: GCC_ANALYZER_WARNING (CWE-404): [#def85]
librest-0.10.2/rest/rest-proxy-call.c:91:1: warning[-Wanalyzer-va-list-leak]: missing call to ‘va_end’
librest-0.10.2/rest/rest-proxy-call.c:453:1: enter_function: entry to ‘rest_proxy_call_add_params’
librest-0.10.2/rest/rest-proxy-call.c:458:3: branch_true: following ‘true’ branch...
librest-0.10.2/rest/rest-proxy-call.c:460:3: branch_true: ...to here
librest-0.10.2/rest/rest-proxy-call.c:460:3: acquire_resource: ‘va_start’ called here
librest-0.10.2/rest/rest-proxy-call.c:461:3: call_function: calling ‘rest_proxy_call_add_params_from_valist’ from ‘rest_proxy_call_add_params’
#   89|   typedef struct _RestProxyCallPrivate RestProxyCallPrivate;
#   90|   
#   91|-> G_DEFINE_TYPE_WITH_PRIVATE (RestProxyCall, rest_proxy_call, G_TYPE_OBJECT)
#   92|   
#   93|   

Error: GCC_ANALYZER_WARNING (CWE-457): [#def86]
librest-0.10.2/rest/rest-proxy-call.h:33:1: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘call’
librest-0.10.2/tests/proxy.c:283:1: enter_function: entry to ‘test_status_ok’
librest-0.10.2/tests/proxy.c:288:10: throw: if ‘rest_proxy_new_call’ throws an exception...
librest-0.10.2/tests/proxy.c:286:21: call_function: inlined call to ‘glib_autoptr_cleanup_GError’ from ‘test_status_ok’
librest-0.10.2/tests/proxy.c:285:28: call_function: inlined call to ‘glib_autoptr_cleanup_RestProxyCall’ from ‘test_status_ok’
#   31|   
#   32|   #define REST_TYPE_PROXY_CALL rest_proxy_call_get_type()
#   33|-> G_DECLARE_DERIVABLE_TYPE (RestProxyCall, rest_proxy_call, REST, PROXY_CALL, GObject)
#   34|   
#   35|   /**

Error: GCC_ANALYZER_WARNING (CWE-404): [#def87]
librest-0.10.2/rest/rest-proxy.c:507:10: warning[-Wanalyzer-va-list-leak]: missing call to ‘va_end’
librest-0.10.2/rest/rest-proxy.c:511:1: enter_function: entry to ‘rest_proxy_bind’
librest-0.10.2/rest/rest-proxy.c:516:3: branch_true: following ‘true’ branch...
librest-0.10.2/rest/rest-proxy.c:518:3: branch_true: ...to here
librest-0.10.2/rest/rest-proxy.c:518:3: acquire_resource: ‘va_start’ called here
librest-0.10.2/rest/rest-proxy.c:519:9: call_function: calling ‘rest_proxy_bind_valist’ from ‘rest_proxy_bind’
#  505|     RestProxyClass *proxy_class = REST_PROXY_GET_CLASS (proxy);
#  506|   
#  507|->   return proxy_class->bind_valist (proxy, params);
#  508|   }
#  509|   

Error: GCC_ANALYZER_WARNING (CWE-404): [#def88]
librest-0.10.2/rest/rest-proxy.c:676:10: warning[-Wanalyzer-va-list-leak]: missing call to ‘va_end’
librest-0.10.2/rest/rest-proxy.c:680:1: enter_function: entry to ‘rest_proxy_simple_run’
librest-0.10.2/rest/rest-proxy.c:689:3: branch_true: following ‘true’ branch...
librest-0.10.2/rest/rest-proxy.c:690:3: branch_true: ...to here
librest-0.10.2/rest/rest-proxy.c:690:3: branch_true: following ‘true’ branch (when ‘payload’ is non-NULL)...
librest-0.10.2/rest/rest-proxy.c:692:3: branch_true: ...to here
librest-0.10.2/rest/rest-proxy.c:692:3: acquire_resource: ‘va_start’ called here
librest-0.10.2/rest/rest-proxy.c:693:9: call_function: calling ‘rest_proxy_simple_run_valist’ from ‘rest_proxy_simple_run’
#  674|   {
#  675|     RestProxyClass *proxy_class = REST_PROXY_GET_CLASS (proxy);
#  676|->   return proxy_class->simple_run_valist (proxy, payload, len, error, params);
#  677|   }
#  678|   

Error: COMPILER_WARNING (CWE-477): [#def89]
librest-0.10.2/tests/proxy-continuous.c: scope_hint: In function ‘send_chunks’
librest-0.10.2/tests/proxy-continuous.c:59:3: warning[-Wdeprecated-declarations]: ‘soup_server_unpause_message’ is deprecated: Use 'soup_server_message_unpause' instead
#   59 |   soup_server_unpause_message (server, msg);
#      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/libsoup-3.0/libsoup/soup.h:36: included_from: Included from here.
librest-0.10.2/tests/proxy-continuous.c:28: included_from: Included from here.
/usr/include/libsoup-3.0/libsoup/soup-server.h:157:17: note: declared here
#  157 | void            soup_server_unpause_message (SoupServer        *server,
#      |                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#   57|   
#   58|     soup_message_body_append (response_body, SOUP_MEMORY_COPY, data, SIZE_CHUNK);
#   59|->   soup_server_unpause_message (server, msg);
#   60|   
#   61|     if (server_count == NUM_CHUNKS * SIZE_CHUNK)

Error: COMPILER_WARNING (CWE-477): [#def90]
librest-0.10.2/tests/proxy-continuous.c:59:3: warning[-Wdeprecated-declarations]: ‘soup_server_unpause_message’ is deprecated: Use 'soup_server_message_unpause' instead
#   57|   
#   58|     soup_message_body_append (response_body, SOUP_MEMORY_COPY, data, SIZE_CHUNK);
#   59|->   soup_server_unpause_message (server, msg);
#   60|   
#   61|     if (server_count == NUM_CHUNKS * SIZE_CHUNK)

Error: COMPILER_WARNING (CWE-477): [#def91]
librest-0.10.2/tests/proxy-continuous.c: scope_hint: In function ‘server_callback’
librest-0.10.2/tests/proxy-continuous.c:94:3: warning[-Wdeprecated-declarations]: ‘soup_server_pause_message’ is deprecated: Use 'soup_server_message_pause' instead
#   94 |   soup_server_pause_message (server, msg);
#      |   ^~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/libsoup-3.0/libsoup/soup-server.h:154:17: note: declared here
#  154 | void            soup_server_pause_message   (SoupServer        *server,
#      |                 ^~~~~~~~~~~~~~~~~~~~~~~~~
#   92|     soup_message_headers_set_encoding (response_headers,
#   93|                                        SOUP_ENCODING_CHUNKED);
#   94|->   soup_server_pause_message (server, msg);
#   95|   
#   96|     g_idle_add (send_chunks, msg);

Error: COMPILER_WARNING (CWE-477): [#def92]
librest-0.10.2/tests/proxy-continuous.c:94:3: warning[-Wdeprecated-declarations]: ‘soup_server_pause_message’ is deprecated: Use 'soup_server_message_pause' instead
#   92|     soup_message_headers_set_encoding (response_headers,
#   93|                                        SOUP_ENCODING_CHUNKED);
#   94|->   soup_server_pause_message (server, msg);
#   95|   
#   96|     g_idle_add (send_chunks, msg);

Error: GCC_ANALYZER_WARNING (CWE-688): [#def93]
librest-0.10.2/tests/proxy.c:138:47: warning[-Wanalyzer-null-argument]: use of NULL where non-null expected
librest-0.10.2/tests/proxy.c:111:1: enter_function: entry to ‘server_callback’
librest-0.10.2/tests/proxy.c:123:11: branch_false: following ‘false’ branch (when the strings are non-equal)...
librest-0.10.2/tests/proxy.c:131:12: branch_false: ...to here
librest-0.10.2/tests/proxy.c:131:11: branch_true: following ‘true’ branch (when the strings are equal)...
librest-0.10.2/tests/proxy.c:134:13: branch_true: ...to here
librest-0.10.2/tests/proxy.c:138:47: danger: argument 1 (‘<unknown>’) NULL where non-null expected
#  136|   
#  137|       soup_server_message_set_response (msg, "text/plain", SOUP_MEMORY_TAKE,
#  138|->                                        value, strlen (value));
#  139|       soup_server_message_set_status (msg, SOUP_STATUS_OK, NULL);
#  140|     }

Scan Properties

analyzer-version-clippy1.92.0
analyzer-version-cppcheck2.19.1
analyzer-version-gcc16.0.0
analyzer-version-gcc-analyzer16.0.0
analyzer-version-shellcheck0.11.0
analyzer-version-unicontrol0.0.2
enabled-pluginsclippy, cppcheck, gcc, shellcheck, unicontrol
exit-code0
hostip-172-16-1-91.us-west-2.compute.internal
known-false-positives/usr/share/csmock/known-false-positives.js
known-false-positives-rpmknown-false-positives-0.0.0.20250521.132812.g8eff701.main-1.el9.noarch
mock-configfedora-rawhide-x86_64
project-namerest-0.10.2-4.fc44
store-results-to/tmp/tmpj1p9_l7o/rest-0.10.2-4.fc44.tar.xz
time-created2026-01-08 21:34:35
time-finished2026-01-08 21:36:39
toolcsmock
tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-x86_64' '-t' 'gcc,cppcheck,clippy,shellcheck,unicontrol' '-o' '/tmp/tmpj1p9_l7o/rest-0.10.2-4.fc44.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '--gcc-analyzer-bin=/usr/bin/gcc' '/tmp/tmpj1p9_l7o/rest-0.10.2-4.fc44.src.rpm'
tool-versioncsmock-3.8.3.20251215.161544.g62de9a5-1.el9