Comment 15 for bug 1806269

Revision history for this message
In , bewied (benwiederhake-github) wrote :

@David Tomaschik:

So it looks like you're experiencing a different bug, and you should open a new issue about it.

I don't know what the underlying issue actually is, but a quick and dirty work-around might be to change this (line 69):

     if (g_str_has_prefix (slot_info->slot_description, "/"))

to this:

     if (!slot_info || g_str_has_prefix (slot_info->slot_description, "/"))

Again, this is quick and dirty, and just masks that there is a problem during `gck_slot_get_info`.

Cheers,
Ben