Rémi Denis-Courmont pushed to branch master at VideoLAN / VLC


Commits:
aaed19ff by Rémi Denis-Courmont at 2022-05-29T09:33:22+00:00
caca: fix invalid deference

Fixes #26284.

- - - - -


1 changed file:

- modules/video_output/caca.c


Changes:

=====================================
modules/video_output/caca.c
=====================================
@@ -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);
     }



View it on GitLab: 
https://code.videolan.org/videolan/vlc/-/commit/aaed19ff50e2afc407abd5875d4b995022f9ad3c

-- 
View it on GitLab: 
https://code.videolan.org/videolan/vlc/-/commit/aaed19ff50e2afc407abd5875d4b995022f9ad3c
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance
_______________________________________________
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to