mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avformat/tls_schannel: Fix use of uninitialized variable
Fixes: runtime error: passing uninitialized value to FreeContextBuffer
causes a crash
Signed-off-by: Paweł Wegner <pawel.wegner95@gmail.com>
(cherry picked from commit 85c00643b7
)
This commit is contained in:
parent
567c20f781
commit
30891d0932
@ -148,7 +148,7 @@ static int tls_client_handshake_loop(URLContext *h, int initial)
|
||||
TLSContext *c = h->priv_data;
|
||||
TLSShared *s = &c->tls_shared;
|
||||
SECURITY_STATUS sspi_ret;
|
||||
SecBuffer outbuf[3];
|
||||
SecBuffer outbuf[3] = { 0 };
|
||||
SecBufferDesc outbuf_desc;
|
||||
SecBuffer inbuf[2];
|
||||
SecBufferDesc inbuf_desc;
|
||||
|
Loading…
Reference in New Issue
Block a user