Fix several uninitialized variables

This commit is contained in:
Jasmine Iwanek
2024-06-11 20:06:04 -04:00
parent 2456c08ffd
commit 193838b7c2
2 changed files with 9 additions and 9 deletions

View File

@@ -696,9 +696,9 @@ static int
cdi_cue_get_frame(uint64_t *frames, char **line)
{
char temp[128];
int min;
int sec;
int fr;
int min = 0;
int sec = 0;
int fr = 0;
int success;
success = cdi_cue_get_buffer(temp, line, 0);