pygobject3-3.54.5-1.fc44

List of Findings

Error: GCC_ANALYZER_WARNING (CWE-476): [#def1]
pygobject-3.54.5/gi/gimodule.c:750:41: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘c’
pygobject-3.54.5/gi/gimodule.c:725:1: enter_function: entry to ‘add_signals’
pygobject-3.54.5/gi/gimodule.c:733:12: branch_true: following ‘true’ branch...
pygobject-3.54.5/gi/gimodule.c:737:14: branch_true: ...to here
pygobject-3.54.5/gi/gimodule.c:737:12: branch_false: following ‘false’ branch...
pygobject-3.54.5/gi/gimodule.c:743:23: branch_false: ...to here
pygobject-3.54.5/gi/gimodule.c:750:41: danger: dereference of NULL ‘c’
#  748|               /* canonicalize signal name, replacing '-' with '_' */
#  749|               signal_name_canon = g_strdup (signal_name);
#  750|->             for (c = signal_name_canon; *c; ++c)
#  751|                   if (*c == '-') *c = '_';
#  752|               if (PyDict_SetItemString (overridden_signals, signal_name_canon,

Error: CPPCHECK_WARNING (CWE-758): [#def2]
pygobject-3.54.5/gi/pygi-argument.c:112: error[overlappingWriteUnion]: Overlapping read/write of union is undefined behavior
#  110|       switch (type_tag) {
#  111|       case GI_TYPE_TAG_INT8:
#  112|->         arg->v_int8 = (gint8)GPOINTER_TO_INT (arg->v_pointer);
#  113|           break;
#  114|       case GI_TYPE_TAG_INT16:

Error: CPPCHECK_WARNING (CWE-758): [#def3]
pygobject-3.54.5/gi/pygi-argument.c:115: error[overlappingWriteUnion]: Overlapping read/write of union is undefined behavior
#  113|           break;
#  114|       case GI_TYPE_TAG_INT16:
#  115|->         arg->v_int16 = (gint16)GPOINTER_TO_INT (arg->v_pointer);
#  116|           break;
#  117|       case GI_TYPE_TAG_INT32:

Error: CPPCHECK_WARNING (CWE-758): [#def4]
pygobject-3.54.5/gi/pygi-argument.c:118: error[overlappingWriteUnion]: Overlapping read/write of union is undefined behavior
#  116|           break;
#  117|       case GI_TYPE_TAG_INT32:
#  118|->         arg->v_int32 = (gint32)GPOINTER_TO_INT (arg->v_pointer);
#  119|           break;
#  120|       case GI_TYPE_TAG_UINT8:

Error: CPPCHECK_WARNING (CWE-758): [#def5]
pygobject-3.54.5/gi/pygi-argument.c:121: error[overlappingWriteUnion]: Overlapping read/write of union is undefined behavior
#  119|           break;
#  120|       case GI_TYPE_TAG_UINT8:
#  121|->         arg->v_uint8 = (guint8)GPOINTER_TO_UINT (arg->v_pointer);
#  122|           break;
#  123|       case GI_TYPE_TAG_UINT16:

Error: CPPCHECK_WARNING (CWE-758): [#def6]
pygobject-3.54.5/gi/pygi-argument.c:124: error[overlappingWriteUnion]: Overlapping read/write of union is undefined behavior
#  122|           break;
#  123|       case GI_TYPE_TAG_UINT16:
#  124|->         arg->v_uint16 = (guint16)GPOINTER_TO_UINT (arg->v_pointer);
#  125|           break;
#  126|       case GI_TYPE_TAG_UINT32:

Error: CPPCHECK_WARNING (CWE-758): [#def7]
pygobject-3.54.5/gi/pygi-argument.c:127: error[overlappingWriteUnion]: Overlapping read/write of union is undefined behavior
#  125|           break;
#  126|       case GI_TYPE_TAG_UINT32:
#  127|->         arg->v_uint32 = (guint32)GPOINTER_TO_UINT (arg->v_pointer);
#  128|           break;
#  129|       case GI_TYPE_TAG_GTYPE:

Error: CPPCHECK_WARNING (CWE-758): [#def8]
pygobject-3.54.5/gi/pygi-argument.c:130: error[overlappingWriteUnion]: Overlapping read/write of union is undefined behavior
#  128|           break;
#  129|       case GI_TYPE_TAG_GTYPE:
#  130|->         arg->v_size = GPOINTER_TO_SIZE (arg->v_pointer);
#  131|           break;
#  132|       case GI_TYPE_TAG_UTF8:

Error: CPPCHECK_WARNING (CWE-457): [#def9]
pygobject-3.54.5/gi/pygi-info.c:776: error[legacyUninitvar]: Uninitialized variable: function_cache
#  774|       }
#  775|   
#  776|->     self->cache = function_cache;
#  777|   
#  778|       return function_cache;

Error: CPPCHECK_WARNING (CWE-457): [#def10]
pygobject-3.54.5/gi/pygi-info.c:2062: error[legacyUninitvar]: Uninitialized variable: pointer
# 2060|       }
# 2061|   
# 2062|->     if (pointer == NULL) {
# 2063|           PyErr_Format (PyExc_RuntimeError,
# 2064|                         "object at %p of type %s is not initialized", instance,

Error: CPPCHECK_WARNING (CWE-457): [#def11]
pygobject-3.54.5/gi/pygi-info.c:2174: error[legacyUninitvar]: Uninitialized variable: pointer
# 2172|       }
# 2173|   
# 2174|->     if (pointer == NULL) {
# 2175|           PyErr_Format (PyExc_RuntimeError,
# 2176|                         "object at %p of type %s is not initialized", instance,

Error: GCC_ANALYZER_WARNING (CWE-476): [#def12]
pygobject-3.54.5/gi/pygi-invoke.c:613:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘((PyGICallableCache)*function_cache).return_cache’
pygobject-3.54.5/gi/pygi-invoke.c:586:8: branch_false: following ‘false’ branch...
 branch_false: ...to here
pygobject-3.54.5/gi/pygi-invoke.c:610:8: branch_true: following ‘true’ branch...
pygobject-3.54.5/gi/pygi-invoke.c:612:9: branch_true: ...to here
pygobject-3.54.5/gi/pygi-invoke.c:612:9: branch_true: following ‘true’ branch (when ‘n_out_args == 0’)...
pygobject-3.54.5/gi/pygi-invoke.c:613:9: branch_true: ...to here
pygobject-3.54.5/gi/pygi-invoke.c:613:9: danger: dereference of NULL ‘*(PyGICallableCache *)function_cache.return_cache’
#  611|           /* We must have no return value */
#  612|           g_assert (n_out_args == 0);
#  613|->         g_assert (cache->return_cache->is_skipped
#  614|                     || cache->return_cache->type_tag == GI_TYPE_TAG_VOID);
#  615|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def13]
pygobject-3.54.5/gi/pygi-invoke.c:621:13: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘((PyGICallableCache)*function_cache).return_cache’
pygobject-3.54.5/gi/pygi-invoke.c:586:8: branch_false: following ‘false’ branch...
 branch_false: ...to here
pygobject-3.54.5/gi/pygi-invoke.c:610:8: branch_false: following ‘false’ branch...
pygobject-3.54.5/gi/pygi-invoke.c:620:8: branch_false: ...to here
pygobject-3.54.5/gi/pygi-invoke.c:620:8: branch_true: following ‘true’ branch (when ‘n_out_args == 0’)...
pygobject-3.54.5/gi/pygi-invoke.c:621:13: branch_true: ...to here
pygobject-3.54.5/gi/pygi-invoke.c:621:13: danger: dereference of NULL ‘*(PyGICallableCache *)function_cache.return_cache’
#  619|   
#  620|       if (n_out_args == 0) {
#  621|->         if (cache->return_cache->is_skipped && state->error == NULL) {
#  622|               /* we skip the return value and have no (out) arguments to return,
#  623|                * so py_return should be NULL. But we must not return NULL,

Error: GCC_ANALYZER_WARNING (CWE-775): [#def14]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def15]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def16]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def17]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def18]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def19]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def20]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def21]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def22]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def23]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def24]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def25]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def26]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def27]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def28]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def29]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def30]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def31]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def32]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def33]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def34]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def35]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def36]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def37]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def38]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def39]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def40]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def41]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def42]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def43]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def44]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def45]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def46]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def47]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def48]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def49]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def50]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def51]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def52]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def53]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def54]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def55]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def56]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def57]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def58]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:686:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def59]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:686:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def60]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:686:41: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def61]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:686:41: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def62]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def63]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def64]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def65]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def66]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def67]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def68]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def69]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def70]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def71]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def72]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def73]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def74]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def75]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def76]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def77]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def78]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def79]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def80]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def81]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def82]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def83]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def84]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def85]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def86]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def87]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def88]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def89]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def90]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def91]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def92]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def93]
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect89aqcahm/WarnLib-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def94]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def95]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def96]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def97]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def98]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def99]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def100]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def101]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def102]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def103]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def104]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def105]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def106]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def107]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def108]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def109]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def110]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def111]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def112]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def113]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def114]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def115]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def116]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def117]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def118]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def119]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def120]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def121]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def122]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def123]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def124]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def125]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def126]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def127]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def128]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def129]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def130]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def131]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def132]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def133]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def134]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def135]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def136]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def137]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def138]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:686:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def139]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:686:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def140]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:686:41: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def141]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:686:41: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def142]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def143]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def144]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def145]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def146]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def147]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def148]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def149]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def150]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def151]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def152]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def153]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def154]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def155]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def156]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def157]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def158]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def159]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def160]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def161]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def162]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def163]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def164]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def165]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def166]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def167]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def168]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def169]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def170]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def171]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def172]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def173]
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect_n4_icc0/RegressUnix-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def174]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def175]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def176]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def177]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def178]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def179]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def180]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def181]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def182]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def183]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def184]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def185]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def186]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def187]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def188]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def189]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def190]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def191]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def192]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def193]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def194]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def195]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def196]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def197]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def198]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def199]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def200]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def201]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def202]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def203]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def204]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def205]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def206]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def207]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def208]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def209]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def210]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def211]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def212]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def213]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def214]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def215]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def216]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def217]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def218]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:686:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def219]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:686:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def220]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:686:41: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def221]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:686:41: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def222]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def223]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def224]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def225]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def226]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def227]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def228]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def229]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def230]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def231]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def232]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def233]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def234]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def235]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def236]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def237]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def238]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def239]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def240]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def241]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def242]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def243]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def244]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def245]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def246]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def247]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def248]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def249]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def250]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def251]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def252]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def253]
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectd6lc5r0x/Regress-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def254]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def255]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def256]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def257]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def258]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def259]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def260]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def261]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def262]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def263]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def264]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def265]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def266]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def267]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def268]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def269]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def270]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def271]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def272]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def273]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def274]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def275]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def276]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def277]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def278]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def279]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def280]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def281]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def282]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def283]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def284]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def285]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def286]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def287]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def288]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def289]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def290]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def291]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def292]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def293]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def294]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def295]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def296]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def297]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def298]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:686:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def299]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:686:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def300]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:686:41: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def301]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:686:41: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def302]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def303]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def304]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def305]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def306]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def307]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def308]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def309]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def310]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def311]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def312]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def313]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def314]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def315]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def316]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def317]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def318]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def319]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def320]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def321]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def322]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def323]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def324]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def325]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def326]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def327]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def328]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def329]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def330]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def331]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def332]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def333]
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectf01o0x2t/GIMarshallingTests-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def334]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def335]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:68:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def336]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def337]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:68:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def338]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def339]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:81:24: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def340]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def341]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:81:24: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def342]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def343]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:96:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def344]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def345]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:96:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def346]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def347]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:99:3: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def348]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def349]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:99:3: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def350]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def351]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:104:19: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def352]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def353]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:104:19: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def354]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def355]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:138:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def356]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def357]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:138:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def358]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def359]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:139:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def360]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def361]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:139:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def362]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def363]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:152:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def364]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def365]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:152:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def366]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def367]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:154:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def368]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def369]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:154:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def370]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def371]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:161:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def372]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def373]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:161:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def374]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def375]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:164:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def376]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def377]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:164:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def378]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:686:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def379]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:686:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def380]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:686:41: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def381]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:686:41: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def382]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def383]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def384]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def385]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def386]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def387]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:709:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def388]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def389]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:709:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def390]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def391]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:713:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def392]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def393]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:713:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def394]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def395]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:725:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def396]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def397]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:725:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def398]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def399]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:728:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def400]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def401]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:728:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def402]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def403]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:732:15: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def404]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def405]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:732:15: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def406]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def407]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:734:11: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def408]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def409]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:734:11: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def410]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def411]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:758:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def412]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: GCC_ANALYZER_WARNING (CWE-401): [#def413]
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:758:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:795:1: enter_function: entry to ‘main’
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:806:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectpz_bko5h/Utility-1.0.c:812:8: call_function: calling ‘dump_irepository’ from ‘main’

Error: CPPCHECK_WARNING (CWE-758): [#def414]
pygobject-3.54.5/subprojects/gobject-introspection-tests/gimarshallingtestsextra.h:37: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#   35|   {
#   36|     GI_MARSHALLING_TESTS_EXTRA_FLAGS_VALUE1 = 0,
#   37|->   GI_MARSHALLING_TESTS_EXTRA_FLAGS_VALUE2 = (gint) (1 << 31),
#   38|   } GIMarshallingTestsExtraFlags;
#   39|   

Scan Properties

analyzer-version-clippy1.90.0
analyzer-version-cppcheck2.18.3
analyzer-version-gcc15.2.1
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-56.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-gcc-latest-x86_64
project-namepygobject3-3.54.5-1.fc44
store-results-to/tmp/tmpb2i66sus/pygobject3-3.54.5-1.fc44.tar.xz
time-created2025-10-28 19:52:36
time-finished2025-10-28 19:54:36
toolcsmock
tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-gcc-latest-x86_64' '-t' 'gcc,cppcheck,shellcheck,clippy,unicontrol' '-o' '/tmp/tmpb2i66sus/pygobject3-3.54.5-1.fc44.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '--install=gcc-latest' '--gcc-analyzer-bin=/opt/gcc-latest/bin/gcc' '/tmp/tmpb2i66sus/pygobject3-3.54.5-1.fc44.src.rpm'
tool-versioncsmock-3.8.3.20251027.143044.ge6b947b-1.el9