Task #473 - fixed.err

back to task #473
download
Error: CLANG_WARNING:
gnome-software-46.0-build/gnome-software-46.0/src/gs-hardware-support-context-dialog.c:250:26: warning[core.UndefinedBinaryOperatorResult]: The right operand of '==' is a garbage value
#  248|   	switch (comparator) {
#  249|   	case AS_RELATION_COMPARE_EQ:
#  250|-> 		return (comparand1.min == comparand2.min &&
#  251|   			comparand1.max == comparand2.max);
#  252|   	case AS_RELATION_COMPARE_NE:

Error: CLANG_WARNING:
gnome-software-46.0-build/gnome-software-46.0/src/gs-hardware-support-context-dialog.c:253:26: warning[core.UndefinedBinaryOperatorResult]: The right operand of '!=' is a garbage value
#  251|   			comparand1.max == comparand2.max);
#  252|   	case AS_RELATION_COMPARE_NE:
#  253|-> 		return (comparand1.min != comparand2.min ||
#  254|   			comparand1.max != comparand2.max);
#  255|   	case AS_RELATION_COMPARE_LT:

Error: CLANG_WARNING:
gnome-software-46.0-build/gnome-software-46.0/src/gs-hardware-support-context-dialog.c:256:26: warning[core.UndefinedBinaryOperatorResult]: The right operand of '<' is a garbage value
#  254|   			comparand1.max != comparand2.max);
#  255|   	case AS_RELATION_COMPARE_LT:
#  256|-> 		return (comparand1.max < comparand2.min);
#  257|   	case AS_RELATION_COMPARE_GT:
#  258|   		return (comparand1.min > comparand2.max);

Error: CLANG_WARNING:
gnome-software-46.0-build/gnome-software-46.0/src/gs-hardware-support-context-dialog.c:258:26: warning[core.UndefinedBinaryOperatorResult]: The right operand of '>' is a garbage value
#  256|   		return (comparand1.max < comparand2.min);
#  257|   	case AS_RELATION_COMPARE_GT:
#  258|-> 		return (comparand1.min > comparand2.max);
#  259|   	case AS_RELATION_COMPARE_LE:
#  260|   		return (comparand1.max <= comparand2.max);

Error: CLANG_WARNING:
gnome-software-46.0-build/gnome-software-46.0/src/gs-hardware-support-context-dialog.c:260:26: warning[core.UndefinedBinaryOperatorResult]: The right operand of '<=' is a garbage value
#  258|   		return (comparand1.min > comparand2.max);
#  259|   	case AS_RELATION_COMPARE_LE:
#  260|-> 		return (comparand1.max <= comparand2.max);
#  261|   	case AS_RELATION_COMPARE_GE:
#  262|   		return (comparand1.min >= comparand2.min);

Error: CLANG_WARNING:
gnome-software-46.0-build/gnome-software-46.0/src/gs-hardware-support-context-dialog.c:262:26: warning[core.UndefinedBinaryOperatorResult]: The right operand of '>=' is a garbage value
#  260|   		return (comparand1.max <= comparand2.max);
#  261|   	case AS_RELATION_COMPARE_GE:
#  262|-> 		return (comparand1.min >= comparand2.min);
#  263|   	case AS_RELATION_COMPARE_UNKNOWN:
#  264|   	case AS_RELATION_COMPARE_LAST: