summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/callerid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/callerid.c b/main/callerid.c
index 1401bbbd9..6102d40af 100644
--- a/main/callerid.c
+++ b/main/callerid.c
@@ -631,7 +631,8 @@ int callerid_feed(struct callerid_state *cid, unsigned char *ubuf, int len, int
default:
ast_log(LOG_NOTICE, "Unknown IE %d\n", cid->rawdata[x - 1]);
}
- if(0 > cid->rawdata[x]){ /* Negative offset in the CID Spill */
+ res = cid->rawdata[x];
+ if (0 > res){ /* Negative offset in the CID Spill */
ast_log(LOG_NOTICE, "IE %d has bad field length of %d at offset %d\n", cid->rawdata[x-1], cid->rawdata[x], x);
/* Try again */
cid->sawflag = 0;