Loading changes/less_alloc_for_esc 0 → 100644 +3 −0 Original line number Diff line number Diff line o Minor bugfixes - Save a couple bytes in memory allocation every time we escape certain characters in a string. Patch from Florian Zumbiehl. src/common/util.c +3 −0 Original line number Diff line number Diff line Loading @@ -940,6 +940,9 @@ esc_for_log(const char *s) case '\\': case '\"': case '\'': case '\r': case '\n': case '\t': len += 2; break; default: Loading Loading
changes/less_alloc_for_esc 0 → 100644 +3 −0 Original line number Diff line number Diff line o Minor bugfixes - Save a couple bytes in memory allocation every time we escape certain characters in a string. Patch from Florian Zumbiehl.
src/common/util.c +3 −0 Original line number Diff line number Diff line Loading @@ -940,6 +940,9 @@ esc_for_log(const char *s) case '\\': case '\"': case '\'': case '\r': case '\n': case '\t': len += 2; break; default: Loading