From: Richard Levitte Date: Thu, 6 May 2004 09:31:31 +0000 (+0000) Subject: When the pointer 'from' changes, it's stored length needs to change as X-Git-Tag: OpenSSL_0_9_7e~123 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3b8ba6b6109e077ccc7c61efd757be357a250bea;p=oweals%2Fopenssl.git When the pointer 'from' changes, it's stored length needs to change as well. Notified by Frank Kardel in PR 879. --- diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c index 2e9f52f1fd..b5a876ae68 100644 --- a/crypto/conf/conf_def.c +++ b/crypto/conf/conf_def.c @@ -632,6 +632,11 @@ static int str_copy(CONF *conf, char *section, char **pto, char *from) BUF_MEM_grow_clean(buf,(strlen(p)+len-(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