1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-01 15:06:38 +02:00

- Fixed some unitialized pointer things for win32 w/ssl on keyprompt, no idea if it

helps, though. Would appreciate it if another code looks into this. -- Syzop
This commit is contained in:
Bram Matthys
2006-11-03 19:31:40 +00:00
parent 898d859b77
commit 4a205703cc
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -1399,3 +1399,5 @@
included that shouldn't. Reported by avb (#0003102), patch supplied by Bock.
- Made it so that when 'java' is enabled for a listen block, then the 2nd parameter to
NICK is not seen as a password on this port. Patch from afolentes (#0003097).
- Fixed some unitialized pointer things for win32 w/ssl on keyprompt, no idea if it
helps, though. Would appreciate it if another code looks into this. -- Syzop
+2 -2
View File
@@ -54,9 +54,9 @@ typedef struct {
#define CHK_SSL(err) if ((err)==-1) { ERR_print_errors_fp(stderr); }
#ifdef _WIN32
static StreamIO *streamp;
static StreamIO *streamp = NULL;
LRESULT SSLPassDLG(HWND hDlg, UINT Message, WPARAM wParam, LPARAM lParam) {
StreamIO *stream;
StreamIO *stream = NULL;
switch (Message) {
case WM_INITDIALOG:
return TRUE;