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:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user