oops, keep Render alive for longer

This commit is contained in:
John Cupitt 2010-03-10 20:12:39 +00:00
parent 96964001c7
commit f652e56abe
1 changed files with 2 additions and 5 deletions

View File

@ -324,8 +324,6 @@ render_dirty_get( void )
if( render_dirty_all ) {
render = (Render *) render_dirty_all->data;
g_assert( render->ref_count == 1 );
/* Ref the render to make sure it can't die while we're
* working on it.
*/
@ -481,9 +479,6 @@ render_thread_main( void *client )
render_dirty_put( render );
g_assert( render->ref_count == 1 ||
render->ref_count == 2 );
/* _get() does a ref to make sure we keep the render
* alive during processing ... unref before we loop.
* This can kill off the render.
@ -491,6 +486,8 @@ render_thread_main( void *client )
render_unref( render );
}
}
return( NULL );
}
/* Create our set of RenderThread. Assume we're single-threaded here.