gssdp-1.6.4-5.fc44

List of Findings

Error: GCC_ANALYZER_WARNING (CWE-775): [#def1]
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:124:17: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘fd’
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:110:14: acquire_resource: socket created here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:113:12: branch_false: following ‘false’ branch (when ‘fd != -1’)...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:119:9: branch_false: ...to here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:123:12: branch_true: following ‘true’ branch (when ‘status == -1’)...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:124:17: branch_true: ...to here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:124:17: throw: if ‘g_log’ throws an exception...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:124:17: danger: ‘fd’ leaks here
#  122|           saved_errno = errno;
#  123|           if (status == -1) {
#  124|->                 g_debug ("Failed ot bind to netlink socket: %s",
#  125|                            g_strerror (saved_errno));
#  126|   

Error: GCC_ANALYZER_WARNING (CWE-775): [#def2]
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:141:16: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘fd’
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:110:14: acquire_resource: socket created here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:113:12: branch_false: following ‘false’ branch (when ‘fd != -1’)...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:119:9: branch_false: ...to here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:123:12: branch_false: following ‘false’ branch (when ‘status != -1’)...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:131:9: branch_false: ...to here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:141:16: throw: if ‘g_inet_address_new_from_string’ throws an exception...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:141:16: danger: ‘fd’ leaks here
#  139|           req.hdr.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
#  140|   
#  141|->         addr = g_inet_address_new_from_string (ip_address);
#  142|           req.gen.ndm_family = g_inet_address_get_family (addr);
#  143|   

Error: GCC_ANALYZER_WARNING (CWE-775): [#def3]
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:142:30: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘fd’
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:110:14: acquire_resource: socket created here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:113:12: branch_false: following ‘false’ branch (when ‘fd != -1’)...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:119:9: branch_false: ...to here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:123:12: branch_false: following ‘false’ branch (when ‘status != -1’)...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:131:9: branch_false: ...to here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:142:30: throw: if ‘g_inet_address_get_family’ throws an exception...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:142:30: danger: ‘fd’ leaks here
#  140|   
#  141|           addr = g_inet_address_new_from_string (ip_address);
#  142|->         req.gen.ndm_family = g_inet_address_get_family (addr);
#  143|   
#  144|           iov.iov_base = &req;

Error: GCC_ANALYZER_WARNING (CWE-775): [#def4]
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:152:18: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘fd’
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:110:14: acquire_resource: socket created here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:113:12: branch_false: following ‘false’ branch (when ‘fd != -1’)...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:119:9: branch_false: ...to here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:123:12: branch_false: following ‘false’ branch (when ‘status != -1’)...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:131:9: branch_false: ...to here
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:152:18: throw: if ‘sendmsg’ throws an exception...
gssdp-1.6.4/libgssdp/gssdp-net-posix.c:152:18: danger: ‘fd’ leaks here
#  150|           msg.msg_namelen = sizeof (dest);
#  151|   
#  152|->         status = sendmsg (fd, (struct msghdr *) &msg, 0);
#  153|           saved_errno = errno;
#  154|   

Error: COMPILER_WARNING (CWE-805): [#def5]
gssdp-1.6.4/libgssdp/gssdp-resource-browser.c: scope_hint: In function ‘gssdp_resource_browser_set_target’
gssdp-1.6.4/libgssdp/gssdp-resource-browser.c:524:62: warning[-Wsizeof-pointer-memaccess]: argument to ‘sizeof’ in ‘strncpy’ call is the same expression as the source; did you mean to use the size of the destination?
#  524 |                 strncpy (version + 1, version_pattern, sizeof(version_pattern));
#      |                                                              ^
#  522|                                     G_REGEX_MATCH_ANCHORED)) {
#  523|                   priv->version = atoi (version + 1);
#  524|->                 strncpy (version + 1, version_pattern, sizeof(version_pattern));
#  525|           }
#  526|   

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-404): [#def26]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:120:9: warning[-Wanalyzer-va-list-leak]: missing call to ‘va_end’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:599:1: enter_function: entry to ‘dump_error_quark’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:601:3: call_function: calling ‘escaped_printf’ from ‘dump_error_quark’

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

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

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

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

Error: GCC_ANALYZER_WARNING (CWE-775): [#def31]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:686:7: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:645:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:654:15: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:658:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: acquire_resource: opened here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:670:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:683:6: branch_true: following ‘true’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:685:25: branch_true: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.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): [#def32]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:686:7: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:645:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:654:15: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:658:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: acquire_memory: allocated here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:670:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:683:6: branch_true: following ‘true’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:685:25: branch_true: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:686:7: throw: if ‘g_file_error_quark’ throws an exception...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.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): [#def33]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:686:41: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:645:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:654:15: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:658:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: acquire_resource: opened here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:670:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:683:6: branch_true: following ‘true’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:685:25: branch_true: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.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): [#def34]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:686:41: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:645:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:654:15: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:658:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: acquire_memory: allocated here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:670:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:683:6: branch_true: following ‘true’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:685:25: branch_true: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:686:41: throw: if ‘g_file_error_from_errno’ throws an exception...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.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): [#def35]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(input_filename, "rb")’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:630:1: enter_function: entry to ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:645:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:654:15: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:658:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: acquire_resource: opened here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:670:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:683:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.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): [#def36]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:699:18: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(output_filename, "wb")’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:630:1: enter_function: entry to ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:645:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:654:15: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:658:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:670:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: acquire_resource: opened here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:683:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.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): [#def37]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(input_filename, "rb")’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:630:1: enter_function: entry to ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:645:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:654:15: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:658:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: acquire_memory: allocated here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:670:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:683:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.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): [#def38]
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:699:18: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(output_filename, "wb")’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:630:1: enter_function: entry to ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:645:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:654:15: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:658:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:669:11: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:670:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:682:12: acquire_memory: allocated here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:683:6: branch_false: following ‘false’ branch...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: branch_false: ...to here
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:696:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:697:3: call_function: calling ‘goutput_write’ from ‘dump_irepository’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:697:3: return_function: returning to ‘dump_irepository’ from ‘goutput_write’
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.c:699:18: throw: if ‘g_hash_table_new’ throws an exception...
gssdp-1.6.4/redhat-linux-build/tmp-introspectzheigjko/GSSDP-1.6.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: COMPILER_WARNING (CWE-477): [#def39]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘append_packet’
gssdp-1.6.4/tools/main-window.c:174:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_model’ is deprecated: Use 'GtkListView' instead
#  174 |         liststore = GTK_LIST_STORE (gtk_tree_view_get_model (
#      |         ^~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkcombobox.h:26: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtk.h:95: included_from: Included from here.
gssdp-1.6.4/tools/main-window.h:5: included_from: Included from here.
gssdp-1.6.4/tools/main-window.c:3: included_from: Included from here.
/usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:209:24: note: declared here
#  209 | GtkTreeModel          *gtk_tree_view_get_model                     (GtkTreeView               *tree_view);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~
#  172|           char **packet_data;
#  173|   
#  174|->         liststore = GTK_LIST_STORE (gtk_tree_view_get_model (
#  175|                   GTK_TREE_VIEW (self->packet_treeview)));
#  176|           g_assert (liststore != NULL);

Error: COMPILER_WARNING (CWE-477): [#def40]
gssdp-1.6.4/tools/main-window.c:174:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_model’ is deprecated: Use 'GtkListView' instead
#  172|           char **packet_data;
#  173|   
#  174|->         liststore = GTK_LIST_STORE (gtk_tree_view_get_model (
#  175|                   GTK_TREE_VIEW (self->packet_treeview)));
#  176|           g_assert (liststore != NULL);

Error: COMPILER_WARNING (CWE-477): [#def41]
gssdp-1.6.4/tools/main-window.c:187:9: warning[-Wdeprecated-declarations]: ‘gtk_list_store_insert_with_values’ is deprecated: Use 'GListStore' instead
#  187 |         gtk_list_store_insert_with_values (liststore,
#      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkentrycompletion.h:26: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtkentry.h:39: included_from: Included from here.
/usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:27: included_from: Included from here.
/usr/include/gtk-4.0/gtk/deprecated/gtkliststore.h:110:15: note: declared here
#  110 | void          gtk_list_store_insert_with_values  (GtkListStore *list_store,
#      |               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  185|                                                  headers);
#  186|   
#  187|->         gtk_list_store_insert_with_values (liststore,
#  188|                                              &iter,
#  189|                                              0,

Error: COMPILER_WARNING (CWE-477): [#def42]
gssdp-1.6.4/tools/main-window.c:187:9: warning[-Wdeprecated-declarations]: ‘gtk_list_store_insert_with_values’ is deprecated: Use 'GListStore' instead
#  185|                                                  headers);
#  186|   
#  187|->         gtk_list_store_insert_with_values (liststore,
#  188|                                              &iter,
#  189|                                              0,

Error: COMPILER_WARNING (CWE-477): [#def43]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘find_device’
gssdp-1.6.4/tools/main-window.c:254:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_get_iter_first’ is deprecated: Use 'GListModel' instead
#  254 |         more = gtk_tree_model_get_iter_first (model, iter);
#      |         ^~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkcellarea.h:30: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtk.h:65: included_from: Included from here.
/usr/include/gtk-4.0/gtk/deprecated/gtktreemodel.h:328:19: note: declared here
#  328 | gboolean          gtk_tree_model_get_iter_first  (GtkTreeModel *tree_model,
#      |                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  252|           gboolean more;
#  253|   
#  254|->         more = gtk_tree_model_get_iter_first (model, iter);
#  255|           while (more) {
#  256|                   char *device_uuid;

Error: COMPILER_WARNING (CWE-477): [#def44]
gssdp-1.6.4/tools/main-window.c:254:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_get_iter_first’ is deprecated: Use 'GListModel' instead
#  252|           gboolean more;
#  253|   
#  254|->         more = gtk_tree_model_get_iter_first (model, iter);
#  255|           while (more) {
#  256|                   char *device_uuid;

Error: COMPILER_WARNING (CWE-477): [#def45]
gssdp-1.6.4/tools/main-window.c:257:17: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_get’ is deprecated: Use 'GListModel' instead
#  257 |                 gtk_tree_model_get (model,
#      |                 ^~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreemodel.h:370:19: note: declared here
#  370 | void              gtk_tree_model_get             (GtkTreeModel *tree_model,
#      |                   ^~~~~~~~~~~~~~~~~~
#  255|           while (more) {
#  256|                   char *device_uuid;
#  257|->                 gtk_tree_model_get (model,
#  258|                                       iter,
#  259|                                       0, &device_uuid, -1);

Error: COMPILER_WARNING (CWE-477): [#def46]
gssdp-1.6.4/tools/main-window.c:257:17: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_get’ is deprecated: Use 'GListModel' instead
#  255|           while (more) {
#  256|                   char *device_uuid;
#  257|->                 gtk_tree_model_get (model,
#  258|                                       iter,
#  259|                                       0, &device_uuid, -1);

Error: COMPILER_WARNING (CWE-477): [#def47]
gssdp-1.6.4/tools/main-window.c:265:17: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_iter_next’ is deprecated: Use 'GListModel' instead
#  265 |                 more = gtk_tree_model_iter_next (model, iter);
#      |                 ^~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreemodel.h:342:19: note: declared here
#  342 | gboolean          gtk_tree_model_iter_next       (GtkTreeModel *tree_model,
#      |                   ^~~~~~~~~~~~~~~~~~~~~~~~
#  263|                   if (found)
#  264|                           break;
#  265|->                 more = gtk_tree_model_iter_next (model, iter);
#  266|           }
#  267|   

Error: COMPILER_WARNING (CWE-477): [#def48]
gssdp-1.6.4/tools/main-window.c:265:17: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_iter_next’ is deprecated: Use 'GListModel' instead
#  263|                   if (found)
#  264|                           break;
#  265|->                 more = gtk_tree_model_iter_next (model, iter);
#  266|           }
#  267|   

Error: COMPILER_WARNING (CWE-477): [#def49]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘append_device’
gssdp-1.6.4/tools/main-window.c:282:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_model’ is deprecated: Use 'GtkListView' instead
#  282 |         model = gtk_tree_view_get_model (GTK_TREE_VIEW (treeview));
#      |         ^~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:209:24: note: declared here
#  209 | GtkTreeModel          *gtk_tree_view_get_model                     (GtkTreeView               *tree_view);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~
#  280|           gboolean result = FALSE;
#  281|   
#  282|->         model = gtk_tree_view_get_model (GTK_TREE_VIEW (treeview));
#  283|   
#  284|           if (!find_device (model, uuid, &iter)) {

Error: COMPILER_WARNING (CWE-477): [#def50]
gssdp-1.6.4/tools/main-window.c:282:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_model’ is deprecated: Use 'GtkListView' instead
#  280|           gboolean result = FALSE;
#  281|   
#  282|->         model = gtk_tree_view_get_model (GTK_TREE_VIEW (treeview));
#  283|   
#  284|           if (!find_device (model, uuid, &iter)) {

Error: COMPILER_WARNING (CWE-477): [#def51]
gssdp-1.6.4/tools/main-window.c:285:17: warning[-Wdeprecated-declarations]: ‘gtk_list_store_insert_with_values’ is deprecated: Use 'GListStore' instead
#  285 |                 gtk_list_store_insert_with_values (GTK_LIST_STORE (model),
#      |                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkliststore.h:110:15: note: declared here
#  110 | void          gtk_list_store_insert_with_values  (GtkListStore *list_store,
#      |               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  283|   
#  284|           if (!find_device (model, uuid, &iter)) {
#  285|->                 gtk_list_store_insert_with_values (GTK_LIST_STORE (model),
#  286|                                                      &iter, 0,
#  287|                                                      DEVICE_STORE_COLUMN_UUID, uuid,

Error: COMPILER_WARNING (CWE-477): [#def52]
gssdp-1.6.4/tools/main-window.c:285:17: warning[-Wdeprecated-declarations]: ‘gtk_list_store_insert_with_values’ is deprecated: Use 'GListStore' instead
#  283|   
#  284|           if (!find_device (model, uuid, &iter)) {
#  285|->                 gtk_list_store_insert_with_values (GTK_LIST_STORE (model),
#  286|                                                      &iter, 0,
#  287|                                                      DEVICE_STORE_COLUMN_UUID, uuid,

Error: COMPILER_WARNING (CWE-477): [#def53]
gssdp-1.6.4/tools/main-window.c:294:17: warning[-Wdeprecated-declarations]: ‘gtk_list_store_set’ is deprecated: Use 'GListStore' instead
#  294 |                 gtk_list_store_set (GTK_LIST_STORE (model), &iter,
#      |                 ^~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkliststore.h:81:15: note: declared here
#   81 | void          gtk_list_store_set              (GtkListStore *list_store,
#      |               ^~~~~~~~~~~~~~~~~~
#  292|   
#  293|           if (device_type) {
#  294|->                 gtk_list_store_set (GTK_LIST_STORE (model), &iter,
#  295|                                       DEVICE_STORE_COLUMN_TYPE, device_type, -1);
#  296|           }

Error: COMPILER_WARNING (CWE-477): [#def54]
gssdp-1.6.4/tools/main-window.c:294:17: warning[-Wdeprecated-declarations]: ‘gtk_list_store_set’ is deprecated: Use 'GListStore' instead
#  292|   
#  293|           if (device_type) {
#  294|->                 gtk_list_store_set (GTK_LIST_STORE (model), &iter,
#  295|                                       DEVICE_STORE_COLUMN_TYPE, device_type, -1);
#  296|           }

Error: COMPILER_WARNING (CWE-477): [#def55]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘remove_device’
gssdp-1.6.4/tools/main-window.c:354:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_model’ is deprecated: Use 'GtkListView' instead
#  354 |         model = gtk_tree_view_get_model (GTK_TREE_VIEW (treeview));
#      |         ^~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:209:24: note: declared here
#  209 | GtkTreeModel          *gtk_tree_view_get_model                     (GtkTreeView               *tree_view);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~
#  352|           GtkTreeIter iter;
#  353|   
#  354|->         model = gtk_tree_view_get_model (GTK_TREE_VIEW (treeview));
#  355|   
#  356|           if (find_device (model, uuid, &iter)) {

Error: COMPILER_WARNING (CWE-477): [#def56]
gssdp-1.6.4/tools/main-window.c:354:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_model’ is deprecated: Use 'GtkListView' instead
#  352|           GtkTreeIter iter;
#  353|   
#  354|->         model = gtk_tree_view_get_model (GTK_TREE_VIEW (treeview));
#  355|   
#  356|           if (find_device (model, uuid, &iter)) {

Error: COMPILER_WARNING (CWE-477): [#def57]
gssdp-1.6.4/tools/main-window.c:357:17: warning[-Wdeprecated-declarations]: ‘gtk_list_store_remove’ is deprecated: Use 'GListStore' instead
#  357 |                 gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
#      |                 ^~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkliststore.h:95:15: note: declared here
#   95 | gboolean      gtk_list_store_remove           (GtkListStore *list_store,
#      |               ^~~~~~~~~~~~~~~~~~~~~
#  355|   
#  356|           if (find_device (model, uuid, &iter)) {
#  357|->                 gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
#  358|   
#  359|                   return TRUE;

Error: COMPILER_WARNING (CWE-477): [#def58]
gssdp-1.6.4/tools/main-window.c:357:17: warning[-Wdeprecated-declarations]: ‘gtk_list_store_remove’ is deprecated: Use 'GListStore' instead
#  355|   
#  356|           if (find_device (model, uuid, &iter)) {
#  357|->                 gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
#  358|   
#  359|                   return TRUE;

Error: COMPILER_WARNING (CWE-477): [#def59]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘on_packet_selected’
gssdp-1.6.4/tools/main-window.c:615:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_selection_get_selected’ is deprecated
#  615 |         if (gtk_tree_selection_get_selected (selection, &model, &iter)) {
#      |         ^~
/usr/include/gtk-4.0/gtk/gtk.h:293: included_from: Included from here.
/usr/include/gtk-4.0/gtk/deprecated/gtktreeselection.h:100:18: note: declared here
#  100 | gboolean         gtk_tree_selection_get_selected        (GtkTreeSelection            *selection,
#      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  613|           GDateTime *arrival_time;
#  614|   
#  615|->         if (gtk_tree_selection_get_selected (selection, &model, &iter)) {
#  616|                   SoupMessageHeaders *packet_headers;
#  617|   

Error: COMPILER_WARNING (CWE-477): [#def60]
gssdp-1.6.4/tools/main-window.c:615:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_selection_get_selected’ is deprecated
#  613|           GDateTime *arrival_time;
#  614|   
#  615|->         if (gtk_tree_selection_get_selected (selection, &model, &iter)) {
#  616|                   SoupMessageHeaders *packet_headers;
#  617|   

Error: COMPILER_WARNING (CWE-477): [#def61]
gssdp-1.6.4/tools/main-window.c:618:17: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_get’ is deprecated: Use 'GListModel' instead
#  618 |                 gtk_tree_model_get (model,
#      |                 ^~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreemodel.h:370:19: note: declared here
#  370 | void              gtk_tree_model_get             (GtkTreeModel *tree_model,
#      |                   ^~~~~~~~~~~~~~~~~~
#  616|                   SoupMessageHeaders *packet_headers;
#  617|   
#  618|->                 gtk_tree_model_get (model,
#  619|                                       &iter,
#  620|                                       PACKET_STORE_COLUMN_HEADERS,

Error: COMPILER_WARNING (CWE-477): [#def62]
gssdp-1.6.4/tools/main-window.c:618:17: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_get’ is deprecated: Use 'GListModel' instead
#  616|                   SoupMessageHeaders *packet_headers;
#  617|   
#  618|->                 gtk_tree_model_get (model,
#  619|                                       &iter,
#  620|                                       PACKET_STORE_COLUMN_HEADERS,

Error: COMPILER_WARNING (CWE-477): [#def63]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘on_clear_capture’
gssdp-1.6.4/tools/main-window.c:649:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_model’ is deprecated: Use 'GtkListView' instead
#  649 |         model = gtk_tree_view_get_model (GTK_TREE_VIEW (self->packet_treeview));
#      |         ^~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:209:24: note: declared here
#  209 | GtkTreeModel          *gtk_tree_view_get_model                     (GtkTreeView               *tree_view);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~
#  647|           GtkTreeModel *model;
#  648|   
#  649|->         model = gtk_tree_view_get_model (GTK_TREE_VIEW (self->packet_treeview));
#  650|           gtk_list_store_clear (GTK_LIST_STORE (model));
#  651|           self->packets = 0;

Error: COMPILER_WARNING (CWE-477): [#def64]
gssdp-1.6.4/tools/main-window.c:649:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_model’ is deprecated: Use 'GtkListView' instead
#  647|           GtkTreeModel *model;
#  648|   
#  649|->         model = gtk_tree_view_get_model (GTK_TREE_VIEW (self->packet_treeview));
#  650|           gtk_list_store_clear (GTK_LIST_STORE (model));
#  651|           self->packets = 0;

Error: COMPILER_WARNING (CWE-477): [#def65]
gssdp-1.6.4/tools/main-window.c:650:9: warning[-Wdeprecated-declarations]: ‘gtk_list_store_clear’ is deprecated: Use 'GListStore' instead
#  650 |         gtk_list_store_clear (GTK_LIST_STORE (model));
#      |         ^~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkliststore.h:128:15: note: declared here
#  128 | void          gtk_list_store_clear            (GtkListStore *list_store);
#      |               ^~~~~~~~~~~~~~~~~~~~
#  648|   
#  649|           model = gtk_tree_view_get_model (GTK_TREE_VIEW (self->packet_treeview));
#  650|->         gtk_list_store_clear (GTK_LIST_STORE (model));
#  651|           self->packets = 0;
#  652|           update_counter_label (self);

Error: COMPILER_WARNING (CWE-477): [#def66]
gssdp-1.6.4/tools/main-window.c:650:9: warning[-Wdeprecated-declarations]: ‘gtk_list_store_clear’ is deprecated: Use 'GListStore' instead
#  648|   
#  649|           model = gtk_tree_view_get_model (GTK_TREE_VIEW (self->packet_treeview));
#  650|->         gtk_list_store_clear (GTK_LIST_STORE (model));
#  651|           self->packets = 0;
#  652|           update_counter_label (self);

Error: COMPILER_WARNING (CWE-477): [#def67]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘on_set_address_filter’
gssdp-1.6.4/tools/main-window.c:709:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_selection’ is deprecated: Use 'GtkListView' instead
#  709 |         selection = gtk_tree_view_get_selection (
#      |         ^~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:214:24: note: declared here
#  214 | GtkTreeSelection      *gtk_tree_view_get_selection                 (GtkTreeView               *tree_view);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#  707|           char *ip_filter;
#  708|   
#  709|->         selection = gtk_tree_view_get_selection (
#  710|                   GTK_TREE_VIEW (self->packet_treeview));
#  711|           gtk_tree_selection_get_selected (selection, &model, &iter);

Error: COMPILER_WARNING (CWE-477): [#def68]
gssdp-1.6.4/tools/main-window.c:709:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_selection’ is deprecated: Use 'GtkListView' instead
#  707|           char *ip_filter;
#  708|   
#  709|->         selection = gtk_tree_view_get_selection (
#  710|                   GTK_TREE_VIEW (self->packet_treeview));
#  711|           gtk_tree_selection_get_selected (selection, &model, &iter);

Error: COMPILER_WARNING (CWE-477): [#def69]
gssdp-1.6.4/tools/main-window.c:711:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_selection_get_selected’ is deprecated
#  711 |         gtk_tree_selection_get_selected (selection, &model, &iter);
#      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreeselection.h:100:18: note: declared here
#  100 | gboolean         gtk_tree_selection_get_selected        (GtkTreeSelection            *selection,
#      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  709|           selection = gtk_tree_view_get_selection (
#  710|                   GTK_TREE_VIEW (self->packet_treeview));
#  711|->         gtk_tree_selection_get_selected (selection, &model, &iter);
#  712|           gtk_tree_model_get (model,
#  713|                               &iter,

Error: COMPILER_WARNING (CWE-477): [#def70]
gssdp-1.6.4/tools/main-window.c:711:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_selection_get_selected’ is deprecated
#  709|           selection = gtk_tree_view_get_selection (
#  710|                   GTK_TREE_VIEW (self->packet_treeview));
#  711|->         gtk_tree_selection_get_selected (selection, &model, &iter);
#  712|           gtk_tree_model_get (model,
#  713|                               &iter,

Error: COMPILER_WARNING (CWE-477): [#def71]
gssdp-1.6.4/tools/main-window.c:712:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_get’ is deprecated: Use 'GListModel' instead
#  712 |         gtk_tree_model_get (model,
#      |         ^~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreemodel.h:370:19: note: declared here
#  370 | void              gtk_tree_model_get             (GtkTreeModel *tree_model,
#      |                   ^~~~~~~~~~~~~~~~~~
#  710|                   GTK_TREE_VIEW (self->packet_treeview));
#  711|           gtk_tree_selection_get_selected (selection, &model, &iter);
#  712|->         gtk_tree_model_get (model,
#  713|                               &iter,
#  714|                               PACKET_STORE_COLUMN_IP,

Error: COMPILER_WARNING (CWE-477): [#def72]
gssdp-1.6.4/tools/main-window.c:712:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_model_get’ is deprecated: Use 'GListModel' instead
#  710|                   GTK_TREE_VIEW (self->packet_treeview));
#  711|           gtk_tree_selection_get_selected (selection, &model, &iter);
#  712|->         gtk_tree_model_get (model,
#  713|                               &iter,
#  714|                               PACKET_STORE_COLUMN_IP,

Error: COMPILER_WARNING (CWE-477): [#def73]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘on_button_release’
gssdp-1.6.4/tools/main-window.c:753:9: warning[-Wdeprecated-declarations]: ‘gtk_gesture_set_sequence_state’ is deprecated
#  753 |         gtk_gesture_set_sequence_state (GTK_GESTURE (click), sequence,
#      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/gtk.h:150: included_from: Included from here.
/usr/include/gtk-4.0/gtk/gtkgesture.h:54:13: note: declared here
#   54 | gboolean    gtk_gesture_set_sequence_state   (GtkGesture            *gesture,
#      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  751|           }
#  752|   
#  753|->         gtk_gesture_set_sequence_state (GTK_GESTURE (click), sequence,
#  754|                                           GTK_EVENT_SEQUENCE_CLAIMED);
#  755|           GtkTreeModel *model;

Error: COMPILER_WARNING (CWE-477): [#def74]
gssdp-1.6.4/tools/main-window.c:753:9: warning[-Wdeprecated-declarations]: ‘gtk_gesture_set_sequence_state’ is deprecated
#  751|           }
#  752|   
#  753|->         gtk_gesture_set_sequence_state (GTK_GESTURE (click), sequence,
#  754|                                           GTK_EVENT_SEQUENCE_CLAIMED);
#  755|           GtkTreeModel *model;

Error: COMPILER_WARNING (CWE-477): [#def75]
gssdp-1.6.4/tools/main-window.c:758:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_selection’ is deprecated: Use 'GtkListView' instead
#  758 |         GtkTreeSelection *selection = gtk_tree_view_get_selection (
#      |         ^~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:214:24: note: declared here
#  214 | GtkTreeSelection      *gtk_tree_view_get_selection                 (GtkTreeView               *tree_view);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#  756|           GtkTreeIter iter;
#  757|   
#  758|->         GtkTreeSelection *selection = gtk_tree_view_get_selection (
#  759|                   GTK_TREE_VIEW (self->packet_treeview));
#  760|   

Error: COMPILER_WARNING (CWE-477): [#def76]
gssdp-1.6.4/tools/main-window.c:758:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_selection’ is deprecated: Use 'GtkListView' instead
#  756|           GtkTreeIter iter;
#  757|   
#  758|->         GtkTreeSelection *selection = gtk_tree_view_get_selection (
#  759|                   GTK_TREE_VIEW (self->packet_treeview));
#  760|   

Error: COMPILER_WARNING (CWE-477): [#def77]
gssdp-1.6.4/tools/main-window.c:761:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_selection_get_selected’ is deprecated
#  761 |         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
#      |         ^~
/usr/include/gtk-4.0/gtk/deprecated/gtktreeselection.h:100:18: note: declared here
#  100 | gboolean         gtk_tree_selection_get_selected        (GtkTreeSelection            *selection,
#      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  759|                   GTK_TREE_VIEW (self->packet_treeview));
#  760|   
#  761|->         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
#  762|                   return;
#  763|           }

Error: COMPILER_WARNING (CWE-477): [#def78]
gssdp-1.6.4/tools/main-window.c:761:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_selection_get_selected’ is deprecated
#  759|                   GTK_TREE_VIEW (self->packet_treeview));
#  760|   
#  761|->         if (!gtk_tree_selection_get_selected (selection, &model, &iter)) {
#  762|                   return;
#  763|           }

Error: COMPILER_WARNING (CWE-477): [#def79]
gssdp-1.6.4/tools/main-window.c: scope_hint: In function ‘gssdp_device_sniffer_main_window_init’
gssdp-1.6.4/tools/main-window.c:796:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_selection’ is deprecated: Use 'GtkListView' instead
#  796 |         GtkTreeSelection *selection = gtk_tree_view_get_selection (
#      |         ^~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:214:24: note: declared here
#  214 | GtkTreeSelection      *gtk_tree_view_get_selection                 (GtkTreeView               *tree_view);
#      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#  794|                             NULL);
#  795|   
#  796|->         GtkTreeSelection *selection = gtk_tree_view_get_selection (
#  797|                   GTK_TREE_VIEW (self->packet_treeview));
#  798|           g_signal_connect (G_OBJECT (selection),

Error: COMPILER_WARNING (CWE-477): [#def80]
gssdp-1.6.4/tools/main-window.c:796:9: warning[-Wdeprecated-declarations]: ‘gtk_tree_view_get_selection’ is deprecated: Use 'GtkListView' instead
#  794|                             NULL);
#  795|   
#  796|->         GtkTreeSelection *selection = gtk_tree_view_get_selection (
#  797|                   GTK_TREE_VIEW (self->packet_treeview));
#  798|           g_signal_connect (G_OBJECT (selection),

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-161.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-namegssdp-1.6.4-5.fc44
store-results-to/tmp/tmpuvgvn5fs/gssdp-1.6.4-5.fc44.tar.xz
time-created2026-01-08 16:51:43
time-finished2026-01-08 16:53:29
toolcsmock
tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-x86_64' '-t' 'gcc,cppcheck,clippy,shellcheck,unicontrol' '-o' '/tmp/tmpuvgvn5fs/gssdp-1.6.4-5.fc44.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '--gcc-analyzer-bin=/usr/bin/gcc' '/tmp/tmpuvgvn5fs/gssdp-1.6.4-5.fc44.src.rpm'
tool-versioncsmock-3.8.3.20251215.161544.g62de9a5-1.el9