You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
backend/snmp.c line 1755-
if (http);
{
/*
* IPP is supported...
*/
It looks like the bracketed block is ment to be conditional on the
value of 'http'. But since there is this strange semicolon at the end
of the line with the 'if', the block is executed unconditionally.
I think that this is a bug and that the semicolon should be removed.
The text was updated successfully, but these errors were encountered:
It is an error, but thanks to how the CUPS APIs check for NULL values it just introduces inefficiency (building an IPP request that is never used) rather than crashing...
Version: 1.2.6
CUPS.org User: kmuto.debian
Hi,
This STR is as same as Debian#397833,
backend/snmp.c line 1755-
if (http);
{
/*
* IPP is supported...
*/
It looks like the bracketed block is ment to be conditional on the
value of 'http'. But since there is this strange semicolon at the end
of the line with the 'if', the block is executed unconditionally.
I think that this is a bug and that the semicolon should be removed.
The text was updated successfully, but these errors were encountered: