forked from premiere/premiere-libtorrent
fix use of uninitialized variable in client_test
This commit is contained in:
parent
18228d6615
commit
8be38c41d7
|
@ -1148,7 +1148,7 @@ int main(int argc, char* argv[])
|
|||
while (loop_limit > 1 || loop_limit == 0)
|
||||
{
|
||||
if (loop_limit > 1) --loop_limit;
|
||||
char c;
|
||||
char c = 0;
|
||||
while (sleep_and_input(&c, refresh_delay))
|
||||
{
|
||||
if (c == 27)
|
||||
|
|
Loading…
Reference in New Issue