From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 26 Mar 2014 04:41:03 +0000 (+0100)
Subject: Client: Fix outdated comment.
X-Git-Tag: tce~798
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/%7B%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/foo.html?a=commitdiff_plain;h=16695e78f4aa52f845c3113010927ca821f21933;p=plomrogue

Client: Fix outdated comment.
---

diff --git a/src/client/windows.c b/src/client/windows.c
index c08ada2..28654b4 100644
--- a/src/client/windows.c
+++ b/src/client/windows.c
@@ -550,8 +550,8 @@ extern void free_winDB()
         free(wc->kb.kbs);
         wc->kb.kbs = NULL;
     }
-    free(world.winDB.ids);  /* NULL this too since add_win_to_winDB() checks  */
-    world.winDB.ids = NULL; /* for it to detect its first post-DB-purge round.*/
+    free(world.winDB.ids); /* NULL this since read_winconf_from_file() checks */
+    world.winDB.ids = NULL;/* for it to detect its first post-DB-purge round. */
     free(world.winDB.wins);
     free(world.winDB.order);
 }