From: Adam Dickmeiss Date: Thu, 5 Sep 2013 12:50:07 +0000 (+0200) Subject: bounce: don't use strdup for fixed length content X-Git-Tag: v1.3.62~8 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=40b194f21cadfda4f9b034e1a0742c570889b731;p=metaproxy-moved-to-github.git bounce: don't use strdup for fixed length content Error occurred in echo mode. --- diff --git a/src/filter_bounce.cpp b/src/filter_bounce.cpp index acfdde1..c17a53d 100644 --- a/src/filter_bounce.cpp +++ b/src/filter_bounce.cpp @@ -69,7 +69,8 @@ static void http_echo(mp::odr &odr, Z_GDU *zgdu, Z_GDU *zgdu_res) z_HTTP_header_set(odr, &hres->headers, "Content-Type", "text/plain"); - hres->content_buf = odr_strdup(odr, buf); + hres->content_buf = (char*) odr_malloc(odr, len); + memcpy(hres->content_buf, buf, len); hres->content_len = len; } odr_destroy(enc);