Unverified Commit 49b2161a authored by Mouse's avatar Mouse Committed by GitHub

Update INTEGER.c

Address compiler warning
parent c51e10af
...@@ -364,7 +364,8 @@ asn_imax2INTEGER(INTEGER_t *st, intmax_t value) { ...@@ -364,7 +364,8 @@ asn_imax2INTEGER(INTEGER_t *st, intmax_t value) {
break; break;
} }
/* Copy the integer body */ /* Copy the integer body */
for(bp = buf, pend1 += add; p != pend1; p += add) pend1 += add;
for(bp = buf; p != pend1; p += add)
*bp++ = *p; *bp++ = *p;
if(st->buf) FREEMEM(st->buf); if(st->buf) FREEMEM(st->buf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment