mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
subprocess-win: remove VLA usage
This only ever waits on four handles at most anyway.
This commit is contained in:
@@ -173,8 +173,10 @@ error:
|
||||
static int sparse_wait(HANDLE *handles, unsigned num_handles)
|
||||
{
|
||||
unsigned w_num_handles = 0;
|
||||
HANDLE w_handles[num_handles];
|
||||
int map[num_handles];
|
||||
HANDLE w_handles[10];
|
||||
int map[10];
|
||||
if (num_handles > MP_ARRAY_SIZE(w_handles))
|
||||
return -1;
|
||||
|
||||
for (unsigned i = 0; i < num_handles; i++) {
|
||||
if (!handles[i])
|
||||
|
||||
Reference in New Issue
Block a user