pygobject3-3.54.5-4.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:745:12: branch_true: following ‘true’ branch...
pygobject-3.54.5/gi/gimodule.c:749:33: call_function: inlined call to ‘g_strdup_inline’ from ‘add_signals’
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-775): [#def12]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def13]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def16]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def17]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def24]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def25]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def33]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def34]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def37]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/199/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def39]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/203/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def41]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(6)](sarif:/runs/0/results/205/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def42]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/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-introspect4dseg73d/Utility-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4dseg73d/Utility-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was opened at [(8)](sarif:/runs/0/results/206/codeFlows/0/threadFlows/0/locations/7)

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def45]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def46]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def49]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def50]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def57]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def58]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def66]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def67]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def70]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/199/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def72]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/203/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def74]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(6)](sarif:/runs/0/results/205/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def75]
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/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-introspect4wpnehba/Regress-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspect4wpnehba/Regress-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was opened at [(8)](sarif:/runs/0/results/206/codeFlows/0/threadFlows/0/locations/7)

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def78]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def79]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def82]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def83]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def90]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def91]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def99]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def100]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def103]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/199/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def105]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/203/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def107]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(6)](sarif:/runs/0/results/205/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def108]
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/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-introspectb86l3d1s/GIMarshallingTests-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectb86l3d1s/GIMarshallingTests-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was opened at [(8)](sarif:/runs/0/results/206/codeFlows/0/threadFlows/0/locations/7)

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def111]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def112]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def115]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def116]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def123]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def124]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def132]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def133]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def136]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/199/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def138]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/203/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def140]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(6)](sarif:/runs/0/results/205/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def141]
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/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-introspectevlayfwi/WarnLib-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectevlayfwi/WarnLib-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was opened at [(8)](sarif:/runs/0/results/206/codeFlows/0/threadFlows/0/locations/7)

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def144]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def145]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def148]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def149]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def156]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def157]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:704:20: call_function: calling ‘read_line’ from ‘dump_irepository’

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

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def165]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

Error: GCC_ANALYZER_WARNING (CWE-775): [#def166]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def169]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:686:7: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/199/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def171]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_true: following ‘true’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:685:25: branch_true: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:686:41: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/203/codeFlows/0/threadFlows/0/locations/4)

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def173]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:699:18: danger: ‘fopen(input_filename, "rb")’ leaks here; was opened at [(6)](sarif:/runs/0/results/205/codeFlows/0/threadFlows/0/locations/5)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def174]
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/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-introspectxmi28lrp/RegressUnix-1.0.c:630:1: enter_function: entry to ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:645:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:654:15: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:658:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:669:11: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:670:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:682:12: acquire_resource: opened here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:683:6: branch_false: following ‘false’ branch...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: branch_false: ...to here
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
pygobject-3.54.5/redhat-linux-build/tmp-introspectxmi28lrp/RegressUnix-1.0.c:699:18: danger: ‘fopen(output_filename, "wb")’ leaks here; was opened at [(8)](sarif:/runs/0/results/206/codeFlows/0/threadFlows/0/locations/7)

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

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

Error: CPPCHECK_WARNING (CWE-758): [#def177]
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.92.0
analyzer-version-cppcheck2.19.1
analyzer-version-gcc16.0.0
analyzer-version-gcc-analyzer16.0.0
analyzer-version-shellcheck0.11.0
analyzer-version-unicontrol0.0.2
enabled-pluginsclippy, cppcheck, gcc, shellcheck, unicontrol
exit-code0
hostip-172-16-1-217.us-west-2.compute.internal
known-false-positives/usr/share/csmock/known-false-positives.js
known-false-positives-rpmknown-false-positives-0.0.0.20250521.132812.g8eff701.main-1.el9.noarch
mock-configfedora-rawhide-x86_64
project-namepygobject3-3.54.5-4.fc44
store-results-to/tmp/tmp34nz2fql/pygobject3-3.54.5-4.fc44.tar.xz
time-created2026-01-08 20:30:39
time-finished2026-01-08 20:32:40
toolcsmock
tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-x86_64' '-t' 'gcc,cppcheck,clippy,shellcheck,unicontrol' '-o' '/tmp/tmp34nz2fql/pygobject3-3.54.5-4.fc44.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '--gcc-analyzer-bin=/usr/bin/gcc' '/tmp/tmp34nz2fql/pygobject3-3.54.5-4.fc44.src.rpm'
tool-versioncsmock-3.8.3.20251215.161544.g62de9a5-1.el9