mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-19 08:02:15 -06:00
qemu-timer: allow freeing a NULL timer
Since 5f8e93c3e2
("util/qemu-timer: Make timer_free() imply timer_del()", 2021-01-08)
it is not possible anymore to pass a NULL pointer to timer_free(). Previously
it would do nothing as it would simply pass NULL down to g_free().
Rectify this, which also fixes "-chardev braille" when there is no device.
Reported-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
c963fee4b0
commit
8b858f9998
1 changed files with 4 additions and 2 deletions
|
@ -629,9 +629,11 @@ void timer_del(QEMUTimer *ts);
|
||||||
*/
|
*/
|
||||||
static inline void timer_free(QEMUTimer *ts)
|
static inline void timer_free(QEMUTimer *ts)
|
||||||
{
|
{
|
||||||
|
if (ts) {
|
||||||
timer_del(ts);
|
timer_del(ts);
|
||||||
g_free(ts);
|
g_free(ts);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* timer_mod_ns:
|
* timer_mod_ns:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue