mirror of
https://github.com/Genymobile/scrcpy
synced 2025-01-04 14:02:29 +00:00
Fix possibly uninitialized value
Due to gotos, "ret" may be returned uninitialized.
This commit is contained in:
parent
192fbd8450
commit
ed130e05d5
@ -308,6 +308,8 @@ scrcpy(const struct scrcpy_options *options) {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool ret = false;
|
||||
|
||||
bool server_started = false;
|
||||
bool fps_counter_initialized = false;
|
||||
bool video_buffer_initialized = false;
|
||||
@ -449,7 +451,7 @@ scrcpy(const struct scrcpy_options *options) {
|
||||
|
||||
input_manager_init(&input_manager, options);
|
||||
|
||||
bool ret = event_loop(options);
|
||||
ret = event_loop(options);
|
||||
LOGD("quit...");
|
||||
|
||||
screen_destroy(&screen);
|
||||
|
Loading…
Reference in New Issue
Block a user