Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 200668 | Differences between
and this patch

Collapse All | Expand All

(-)a/core/daemon_cmd.c (+8 lines)
Lines 262-268 int cmd_paint(void **args) Link Here
262
{
262
{
263
	char ret = 0;
263
	char ret = 0;
264
264
265
	fbsplash_profile("cmd_paint: handler entry point\n");
266
265
	pthread_mutex_lock(&mtx_paint);
267
	pthread_mutex_lock(&mtx_paint);
268
269
	fbsplash_profile("cmd_paint: mutex locked\n");
270
266
	if (!theme) {
271
	if (!theme) {
267
		ret = -1;
272
		ret = -1;
268
		goto out;
273
		goto out;
Lines 274-279 int cmd_paint(void **args) Link Here
274
	fbsplashr_render_screen(theme, false, false, FBSPL_EFF_NONE);
279
	fbsplashr_render_screen(theme, false, false, FBSPL_EFF_NONE);
275
out:
280
out:
276
	pthread_mutex_unlock(&mtx_paint);
281
	pthread_mutex_unlock(&mtx_paint);
282
283
	fbsplash_profile("cmd_paint: exit point\n");
284
277
	return ret;
285
	return ret;
278
}
286
}
279
287

Return to bug 200668