mirror of
https://github.com/curl/curl.git
synced 2026-04-15 16:01:41 +03:00
rtspd: fix MSVC level 4 warning
warning C4701: potentially uninitialized local variable 'req' used
This commit is contained in:
parent
a4bef6a91b
commit
70cbefeb5f
1 changed files with 1 additions and 1 deletions
|
|
@ -1191,7 +1191,7 @@ int main(int argc, char *argv[])
|
|||
int flag;
|
||||
unsigned short port = DEFAULT_PORT;
|
||||
const char *pidname = ".rtsp.pid";
|
||||
struct httprequest req;
|
||||
struct httprequest req = {0};
|
||||
int rc;
|
||||
int error;
|
||||
int arg=1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue