diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-01-10 12:48:20 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-01-10 12:48:20 +0000 |
commit | 82c529fbc16afd118509e5805d26ca2cd79e2ab4 (patch) | |
tree | a60541f59b9cb436d88c1087d76aa1ae8f2ed570 /plugins/SMS/src/recvdlg.cpp | |
parent | ed3d8bba1b542e0bbf382a6f2eb4b78147d10bc0 (diff) |
SMS:
- Fixed potentially uninitialized variables
git-svn-id: http://svn.miranda-ng.org/main/trunk@11813 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SMS/src/recvdlg.cpp')
-rw-r--r-- | plugins/SMS/src/recvdlg.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/SMS/src/recvdlg.cpp b/plugins/SMS/src/recvdlg.cpp index 5a02b133bf..0409ba6693 100644 --- a/plugins/SMS/src/recvdlg.cpp +++ b/plugins/SMS/src/recvdlg.cpp @@ -208,6 +208,7 @@ HWND RecvSMSWindowAdd(MCONTACT hContact,DWORD dwEventType,LPWSTR lpwszPhone,size break;
default:
lpwszTitlepart=_T("Unknown event type");
+ hIcon = 0;
}
wszPhoneLocal[0]='+';
|