openbsd-ports/devel/libeventextra/patches/patch-http_c
nicm c0e9f0cc65 Import libeventextra with all the bits of libevent 1.4 we don't want in
the base system: DNS resolver, HTTP and RPC functions.
2010-04-21 22:55:34 +00:00

25 lines
812 B
Plaintext

$OpenBSD: patch-http_c,v 1.1.1.1 2010/04/21 22:55:34 nicm Exp $
--- http.c.orig Thu Jul 2 07:05:28 2009
+++ http.c Tue Apr 20 21:32:53 2010
@@ -281,15 +281,17 @@ evhttp_htmlescape(const char *html)
for (i = 0; i < old_size; ++i)
new_size += strlen(html_replace(html[i], scratch_space));
+ new_size++;
- p = escaped_html = malloc(new_size + 1);
+ p = escaped_html = malloc(new_size);
if (escaped_html == NULL)
- event_err(1, "%s: malloc(%d)", __func__, new_size + 1);
+ event_err(1, "%s: malloc(%d)", __func__, new_size);
for (i = 0; i < old_size; ++i) {
const char *replaced = html_replace(html[i], scratch_space);
/* this is length checked */
- strcpy(p, replaced);
+ strlcpy(p, replaced, new_size);
p += strlen(replaced);
+ new_size -= strlen(replaced);
}
*p = '\0';