You need to sign in or sign up before continuing.
提交 430d7afd 编写于 作者: R Richard Levitte

When the pointer 'from' changes, it's stored length needs to change as

well.

Notified by Frank Kardel <kardel@acm.org> in PR 879.
上级 ca982e48
......@@ -632,6 +632,11 @@ static int str_copy(CONF *conf, char *section, char **pto, char *from)
BUF_MEM_grow_clean(buf,(strlen(p)+buf->length-(e-from)));
while (*p)
buf->data[to++]= *(p++);
/* Since we change the pointer 'from', we also have
to change the perceived length of the string it
points at. /RL */
len -= e-from;
from=e;
}
else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册