diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-30 12:34:50 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-30 12:34:50 +0000 |
commit | e2d393ac442287191c9da50db012436f576c67e8 (patch) | |
tree | 014725423e3294ced6eb1590b94f79ef3bb4a56e /plugins/Utils.pas | |
parent | 25ec54ea27a7099f33573b260a620ed7273176fe (diff) |
fix for broken condition
git-svn-id: http://svn.miranda-ng.org/main/trunk@5192 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Utils.pas')
-rw-r--r-- | plugins/Utils.pas/mirutils.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Utils.pas/mirutils.pas b/plugins/Utils.pas/mirutils.pas index 97717ea1cd..4e45e08fe2 100644 --- a/plugins/Utils.pas/mirutils.pas +++ b/plugins/Utils.pas/mirutils.pas @@ -768,7 +768,7 @@ begin groupId:=0;
repeat
pw:=DBReadUnicode(0,'CListGroups',IntToStr(groupIdStr,groupId));
- if pw<>nil then
+ if pw=nil then
break;
if StrCmpW(pw+1,@grbuf[1])=0 then
|