From 53109b7592500b71f8c670ea58b0182193ba9a71 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Tue, 13 Mar 2007 12:34:58 +0000 Subject: [PATCH] comparing strings to random locations in memory is probably not what we wanted to do --- openbox/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index dc61deba..fbfc15b1 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -639,7 +639,7 @@ static ObAppSettings *client_get_settings_state(ObClient *self) GSList *it; for (it = config_per_app_settings; it; it = g_slist_next(it)) { - ObAppSettings *app; + ObAppSettings *app = it->data; if ((app->name && !app->class && !strcmp(app->name, self->name)) || (app->class && !app->name && !strcmp(app->class, self->class)) -- 2.39.2