Fix possibly uninitialized value
Due to gotos, "ret" may be returned uninitialized.
This commit is contained in:
parent
192fbd8450
commit
ed130e05d5
1 changed files with 3 additions and 1 deletions
|
@ -308,6 +308,8 @@ scrcpy(const struct scrcpy_options *options) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ret = false;
|
||||||
|
|
||||||
bool server_started = false;
|
bool server_started = false;
|
||||||
bool fps_counter_initialized = false;
|
bool fps_counter_initialized = false;
|
||||||
bool video_buffer_initialized = false;
|
bool video_buffer_initialized = false;
|
||||||
|
@ -449,7 +451,7 @@ scrcpy(const struct scrcpy_options *options) {
|
||||||
|
|
||||||
input_manager_init(&input_manager, options);
|
input_manager_init(&input_manager, options);
|
||||||
|
|
||||||
bool ret = event_loop(options);
|
ret = event_loop(options);
|
||||||
LOGD("quit...");
|
LOGD("quit...");
|
||||||
|
|
||||||
screen_destroy(&screen);
|
screen_destroy(&screen);
|
||||||
|
|
Loading…
Reference in a new issue