]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg: fix use of uninitialized variable under CONFIG_PROFILER
authorEmilio G. Cota <cota@braap.org>
Wed, 10 Oct 2018 14:48:51 +0000 (10:48 -0400)
committerRichard Henderson <richard.henderson@linaro.org>
Fri, 19 Oct 2018 01:58:10 +0000 (18:58 -0700)
We forgot to initialize n in commit 15fa08f845 ("tcg: Dynamically
allocate TCGOps", 2017-12-29).

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Message-Id: <20181010144853.13005-3-cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
tcg/tcg.c

index f27b22bd3c842d33d470e39dcea4dcb15c2a3c49..8f26916b99352ade6c0c8af09bde55c6b81fd097 100644 (file)
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -3430,7 +3430,7 @@ int tcg_gen_code(TCGContext *s, TranslationBlock *tb)
 
 #ifdef CONFIG_PROFILER
     {
-        int n;
+        int n = 0;
 
         QTAILQ_FOREACH(op, &s->ops, link) {
             n++;