From 2c3717881f3500ae73ece85bffb70dd868535dbf Mon Sep 17 00:00:00 2001
From: Sylvain <[EMAIL REDACTED]>
Date: Tue, 13 Jun 2023 23:00:00 +0200
Subject: [PATCH] testautomation_events.c: initialize "timestamp" to solve
"conditional jump or move depends on uninitialised value"
---
test/testautomation_events.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/test/testautomation_events.c b/test/testautomation_events.c
index a2732990bb42..faa27b644a24 100644
--- a/test/testautomation_events.c
+++ b/test/testautomation_events.c
@@ -51,6 +51,7 @@ static int events_pushPumpAndPollUserevent(void *arg)
/* Create user event */
event1.type = SDL_EVENT_USER;
+ event1.common.timestamp = 0;
event1.user.code = SDLTest_RandomSint32();
event1.user.data1 = (void *)&g_userdataValue1;
event1.user.data2 = (void *)&g_userdataValue2;
@@ -86,6 +87,7 @@ static int events_addDelEventWatch(void *arg)
/* Create user event */
event.type = SDL_EVENT_USER;
+ event.common.timestamp = 0;
event.user.code = SDLTest_RandomSint32();
event.user.data1 = (void *)&g_userdataValue1;
event.user.data2 = (void *)&g_userdataValue2;
@@ -135,6 +137,7 @@ static int events_addDelEventWatchWithUserdata(void *arg)
/* Create user event */
event.type = SDL_EVENT_USER;
+ event.common.timestamp = 0;
event.user.code = SDLTest_RandomSint32();
event.user.data1 = (void *)&g_userdataValue1;
event.user.data2 = (void *)&g_userdataValue2;