Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 506426
Collapse All | Expand All

(-)libs/Flocale.c (-1 / +8 lines)
Lines 2358-2364 void FlocaleFreeNameProperty(FlocaleName Link Here
2358
		XFreeStringList(ptext->name_list);
2358
		XFreeStringList(ptext->name_list);
2359
		ptext->name_list = NULL;
2359
		ptext->name_list = NULL;
2360
	}
2360
	}
2361
	else if (ptext->name != NULL)
2361
	else if (ptext->name != NULL
2362
                 /* Sorry, this is pretty ugly.
2363
                    in fvwm/events.c we have:
2364
                    FlocaleNameString new_name = { NoName, NULL };
2365
                    NoName is a global extern I don't want to add to
2366
                    to this libary module.
2367
                    So, this check comes close enough: */
2368
                 && strcmp("Untitled",ptext->name) != 0)
2362
	{
2369
	{
2363
		XFree(ptext->name);
2370
		XFree(ptext->name);
2364
	}
2371
	}

Return to bug 506426