Skip to content
Snippets Groups Projects
Commit aaed19ff authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

caca: fix invalid deference

Fixes #26284.
parent aecaaec7
No related branches found
No related tags found
Loading
Pipeline #225812 passed with stage
in 16 minutes and 20 seconds
......@@ -87,6 +87,7 @@ static void VoutDisplayEventKey(vout_display_sys_t *sys, int key)
vlc_caca_event_t *event = malloc(sizeof (*event));
if (likely(event != NULL)) {
event->next = NULL;
event->key = key;
vlc_queue_Enqueue(&sys->q, event);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment