diff options
author | Alexey Kulakov <panda75@bk.ru> | 2012-11-25 15:23:30 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2012-11-25 15:23:30 +0000 |
commit | 3a1adaded2f5c7cc6acc45fea514fea2e36a11a1 (patch) | |
tree | 1f0a1030cbb3a9d936c1017cc0c82abcac1dbe99 /plugins | |
parent | a319316e9d6ba0b515846d48c89cdfcf2024fb28 (diff) |
possible watrack fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2486 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Utils.pas/protocols.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Utils.pas/protocols.pas b/plugins/Utils.pas/protocols.pas index 842eb53e85..8ca8eab362 100644 --- a/plugins/Utils.pas/protocols.pas +++ b/plugins/Utils.pas/protocols.pas @@ -580,8 +580,8 @@ begin cbSize:=SizeOf(ics);
flags:=CSSF_MASK_STATUS or CSSF_MASK_NAME or CSSF_MASK_MESSAGE or CSSF_UNICODE;
status:=@result;
- szName.w :=pWideChar(title);
- szMessage.w:=pWideChar(txt);
+ szName.w :=pWideChar(title^);
+ szMessage.w:=pWideChar(txt^);
end;
CallProtoService(proto,PS_GETCUSTOMSTATUSEX,0,dword(@ics));
|