diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2020-12-15 15:41:06 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-01-08 15:13:38 +0000 |
commit | 729cc683735309bdcd55604be19292950877ecf5 (patch) | |
tree | 1526e51aa0a38f97a5950bc549472aefd58c19c8 /ui | |
parent | 01b3e68bb18d1a37f013ffac41423faa7c00958f (diff) | |
download | qemu-729cc683735309bdcd55604be19292950877ecf5.zip |
Remove superfluous timer_del() calls
This commit is the result of running the timer-del-timer-free.cocci
script on the whole source tree.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Acked-by: Corey Minyard <cminyard@mvista.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20201215154107.3255-4-peter.maydell@linaro.org
Diffstat (limited to 'ui')
-rw-r--r-- | ui/console.c | 1 | ||||
-rw-r--r-- | ui/spice-core.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/ui/console.c b/ui/console.c index 4db5b04cc2..d80ce7037c 100644 --- a/ui/console.c +++ b/ui/console.c @@ -253,7 +253,6 @@ static void gui_setup_refresh(DisplayState *ds) timer_mod(ds->gui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME)); } if (!need_timer && ds->gui_timer != NULL) { - timer_del(ds->gui_timer); timer_free(ds->gui_timer); ds->gui_timer = NULL; } diff --git a/ui/spice-core.c b/ui/spice-core.c index eea52f5389..5746d0aae7 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -76,7 +76,6 @@ static void timer_cancel(SpiceTimer *timer) static void timer_remove(SpiceTimer *timer) { - timer_del(timer->timer); timer_free(timer->timer); g_free(timer); } |