Comment 28 for bug 705078

Revision history for this message
Bryce Harrington (bryce) wrote :

I'm noticing the crash appears in a libpixman call, the source code of which is trivial:

PIXMAN_EXPORT void
pixman_image_set_has_client_clip (pixman_image_t *image,
                                  pixman_bool_t client_clip)
{
    image->common.client_clip = client_clip;
}

Looks like it could segfault if image was NULL.