From d6bb5bec860550c8734257012c239f6c1743c528 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 8 Jan 2013 18:10:27 +0900 Subject: [PATCH] Use the already calculated string length. No point doing it twice. --- libs/util/qfplist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/util/qfplist.c b/libs/util/qfplist.c index 99523349a..b98c3a791 100644 --- a/libs/util/qfplist.c +++ b/libs/util/qfplist.c @@ -917,7 +917,7 @@ write_string (dstring_t *dstr, const char *str) return; } // assume worst case of all octal chars plus two quotes. - dst = dstring_reservestr (dstr, strlen (str) * 4 + 2); + dst = dstring_reservestr (dstr, len * 4 + 2); *dst++= '\"'; while (*str) { if (*str && isascii ((byte) *str) && isprint ((byte) *str)