shell: allocate enough memory for shsurf->ping_timer

This commit is contained in:
Ander Conselvan de Oliveira 2012-04-27 13:55:55 +03:00 committed by Kristian Høgsberg
parent a8479f1e3a
commit fb9808993b
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ ping_handler(struct weston_surface *surface, uint32_t serial)
return;
if (!shsurf->ping_timer) {
shsurf->ping_timer = malloc(sizeof shsurf->ping_timer);
shsurf->ping_timer = malloc(sizeof *shsurf->ping_timer);
if (!shsurf->ping_timer)
return;