From 40b194f21cadfda4f9b034e1a0742c570889b731 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 5 Sep 2013 14:50:07 +0200 Subject: [PATCH] bounce: don't use strdup for fixed length content Error occurred in echo mode. --- src/filter_bounce.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 1.7.10.4