Skip to content
Snippets Groups Projects
Commit 98394ef9 authored by afdw's avatar afdw
Browse files

Add checks for 0 handles (Bug #14122)

parent ea61e482
No related branches found
No related tags found
No related merge requests found
......@@ -346,8 +346,15 @@ thunar_thumbnailer_queue_async_reply (GObject *proxy,
}
else if (error == NULL)
{
/* store the handle returned by tumbler */
job->handle = handle;
if (handle == 0)
{
g_printerr ("ThunarThumbnailer: got 0 handle (Queue)\n");
}
else
{
/* store the handle returned by tumbler */
job->handle = handle;
}
}
else
{
......@@ -853,6 +860,12 @@ thunar_thumbnailer_thumbnailer_finished (GDBusProxy *proxy,
_thunar_return_if_fail (G_IS_DBUS_PROXY (proxy));
_thunar_return_if_fail (THUNAR_IS_THUMBNAILER (thumbnailer));
if (handle == 0)
{
g_printerr ("ThunarThumbnailer: got 0 handle (Finished)\n");
return;
}
_thumbnailer_lock (thumbnailer);
for (lp = thumbnailer->jobs; lp != NULL; lp = lp->next)
......@@ -894,6 +907,12 @@ thunar_thumbnailer_idle (ThunarThumbnailer *thumbnailer,
if (G_UNLIKELY (uris == NULL))
return;
if (handle == 0)
{
g_printerr ("ThunarThumbnailer: got 0 handle (Error or Ready)\n");
return;
}
_thumbnailer_lock (thumbnailer);
/* look for the job so we don't emit unknown handles, the reason
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment