From: Walter Doekes Date: Fri, 11 Nov 2011 21:33:13 +0000 (+0000) Subject: Remove unneeded if(params) checks in reqresp_parser. X-Git-Tag: 1.8.9.0-rc1~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b3270601a64aa991e799e17e765639ca12eb7bf;p=thirdparty%2Fasterisk.git Remove unneeded if(params) checks in reqresp_parser. Nick Lewis added them in https://reviewboard.asterisk.org/r/549/diff/1-2/ for no apparent reason. There is no way that params could become NULL in that piece of code, so I removed these excess checks again. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@344837 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/sip/reqresp_parser.c b/channels/sip/reqresp_parser.c index 887752d888..a881123818 100644 --- a/channels/sip/reqresp_parser.c +++ b/channels/sip/reqresp_parser.c @@ -176,23 +176,23 @@ int parse_uri_full(char *uri, const char *scheme, char **user, char **pass, } if (!strcmp(label, "transport")) { - if (params) {params->transport=value;} + params->transport = value; rem = parameters; } else if (!strcmp(label, "user")) { - if (params) {params->user=value;} + params->user = value; rem = parameters; } else if (!strcmp(label, "method")) { - if (params) {params->method=value;} + params->method = value; rem = parameters; } else if (!strcmp(label, "ttl")) { - if (params) {params->ttl=value;} + params->ttl = value; rem = parameters; } else if (!strcmp(label, "maddr")) { - if (params) {params->maddr=value;} + params->maddr = value; rem = parameters; /* Treat "lr", "lr=yes", "lr=on", "lr=1", "lr=almostanything" as lr enabled and "", "lr=no", "lr=off", "lr=0", "lr=" and "lranything" as lr disabled */ } else if ((!strcmp(label, "lr") && strcmp(value, "no") && strcmp(value, "off") && strcmp(value, "0") && strcmp(value, "")) || ((lr) && strcmp(value, "lr"))) { - if (params) {params->lr=1;} + params->lr = 1; rem = parameters; } else { value--;