Task #868 - fixed.err

back to task #868
download
Error: CLANG_WARNING:
libupnp-1.14.18-build/pupnp-release-1.14.18/upnp/src/api/upnpapi.c:3369:3: warning[deadcode.DeadStores]: Value stored to 'status' is never read
# 3367|   	int status = http_EndHttpRequest(handle, timeout);
# 3368|   	if (status == UPNP_E_SUCCESS) {
# 3369|-> 		status = http_GetHttpResponse(
# 3370|   			handle, NULL, NULL, NULL, httpStatus, timeout);
# 3371|   	}

Error: CLANG_WARNING:
libupnp-1.14.18-build/pupnp-release-1.14.18/upnp/src/genlib/net/http/httpparser.c:289:6: warning[deadcode.DeadStores]: Value stored to 'c' is never read
#  287|   			} else if (c == '\\') {
#  288|   				if (cursor < null_terminator) {
#  289|-> 					c = *cursor++;
#  290|   					/* the char after '\\' could be ANY
#  291|   					 * octet */