summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/Utils.pas/protocols.pas4
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));