mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-14 00:24:05 +00:00
suppress compiler warning
Code shamelessly borrowed from r41271 (it was the same warning/fix) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41274 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -691,6 +691,7 @@ static void sms_readfile (sms_t * h, char *fn)
|
|||||||
while (fgets (line, sizeof (line), s))
|
while (fgets (line, sizeof (line), s))
|
||||||
{ /* process line in file */
|
{ /* process line in file */
|
||||||
char *p;
|
char *p;
|
||||||
|
void *pp = &p;
|
||||||
for (p = line; *p && *p != '\n' && *p != '\r'; p++);
|
for (p = line; *p && *p != '\n' && *p != '\r'; p++);
|
||||||
*p = 0; /* strip eoln */
|
*p = 0; /* strip eoln */
|
||||||
p = line;
|
p = line;
|
||||||
@@ -710,7 +711,7 @@ static void sms_readfile (sms_t * h, char *fn)
|
|||||||
{ /* parse message (UTF-8) */
|
{ /* parse message (UTF-8) */
|
||||||
unsigned char o = 0;
|
unsigned char o = 0;
|
||||||
while (*p && o < SMSLEN)
|
while (*p && o < SMSLEN)
|
||||||
h->ud[o++] = utf8decode((unsigned char **) &p);
|
h->ud[o++] = utf8decode(pp);
|
||||||
h->udl = o;
|
h->udl = o;
|
||||||
if (*p)
|
if (*p)
|
||||||
ast_log (LOG_WARNING, "UD too long in %s\n", fn);
|
ast_log (LOG_WARNING, "UD too long in %s\n", fn);
|
||||||
|
Reference in New Issue
Block a user