From fcc6e1220e8600502d463fc8e785849450c18db9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 30 Mar 2015 12:43:51 -0300 Subject: [PATCH] avoid expression with side effect (in debug mode) inside 'sizeof' --- ldump.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ldump.c b/ldump.c index ec35031e..b3d201e9 100644 --- a/ldump.c +++ b/ldump.c @@ -1,5 +1,5 @@ /* -** $Id: ldump.c,v 2.34 2014/11/02 19:19:04 roberto Exp roberto $ +** $Id: ldump.c,v 2.35 2015/01/16 16:54:37 roberto Exp roberto $ ** save precompiled Lua chunks ** See Copyright Notice in lua.h */ @@ -75,13 +75,14 @@ static void DumpString (const TString *s, DumpState *D) { DumpByte(0, D); else { size_t size = tsslen(s) + 1; /* include trailing '\0' */ + const char *str = getstr(s); if (size < 0xFF) DumpByte(cast_int(size), D); else { DumpByte(0xFF, D); DumpVar(size, D); } - DumpVector(getstr(s), size - 1, D); /* no need to save '\0' */ + DumpVector(str, size - 1, D); /* no need to save '\0' */ } }