commit | 472ad51edeb4bb5ea601d7e296b5d0a0cd1a140a | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Thu Apr 30 09:57:40 2020 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Tue May 05 11:06:43 2020 +0200 |
tree | 022c239344d9ee97cad1fe0e838d6b64ea20c4d8 | |
parent | 707ad328ef6f9061f2da04f81431bc2fe2b2348a [diff] |
BUG/MINOR: sample: Set the correct type when a binary is converted to a string A binary sample data can be converted, implicitly or not, to a string by cutting the buffer on the first null byte. I guess this patch should be backported to all stable versions.
diff --git a/src/sample.c b/src/sample.c index 8bdbbe4..b9fe37f 100644 --- a/src/sample.c +++ b/src/sample.c
@@ -623,6 +623,7 @@ break; } } + smp->data.type = SMP_T_STR; return 1; }