diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2014-10-05 21:31:20 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2014-10-05 21:40:50 +0100 |
commit | 8bc732e8b03ebb4309f4b42626917148d176db49 (patch) | |
tree | 858b4ca5823c738e731217ce69a6e8b08ce0d3d7 /src | |
parent | 9acf6b941e1356590e94e8e4a0bcf5dd3318087c (diff) |
Remove limit on remove_headers item size. Bug 1533
Diffstat (limited to 'src')
-rw-r--r-- | src/src/transport.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/src/transport.c b/src/src/transport.c index 31437b146..15c30bf04 100644 --- a/src/src/transport.c +++ b/src/src/transport.c @@ -643,8 +643,7 @@ for (h = header_list; h != NULL; h = h->next) if (h->type != htype_old) { int sep = ':'; /* This is specified as a colon-separated list */ uschar *s, *ss; - uschar buffer[128]; - while ((s = string_nextinlist(&list, &sep, buffer, sizeof(buffer)))) + while ((s = string_nextinlist(&list, &sep, NULL, 0))) { int len; |