Commit 80a2c664 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

winhttp: Remove assertion that is no longer valid in Windows 10.

parent 34a701f2
......@@ -350,7 +350,7 @@ DWORD netconn_secure_connect( struct netconn *conn, WCHAR *hostname, DWORD secur
}
assert(in_bufs[0].BufferType == SECBUFFER_TOKEN);
assert(in_bufs[1].BufferType == SECBUFFER_EMPTY);
in_bufs[1].BufferType = SECBUFFER_EMPTY;
if(in_bufs[0].cbBuffer + 1024 > read_buf_size) {
BYTE *new_read_buf;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment