summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2013-08-17 00:28:23 +0800
committerLAN-TW <lantw44@gmail.com>2013-08-17 00:28:23 +0800
commitd7dbeb55107ccad5ff7f6513c8a1fdf7d7fd0e79 (patch)
tree63c4f2ab1bb5f47c4b1025c4afd28f3383cf3c62
parenta35dc3851ef95062eef8bcb0daf3672ff14a5061 (diff)
downloadgsoc2013-libgnome-autoar-d7dbeb55107ccad5ff7f6513c8a1fdf7d7fd0e79.tar
gsoc2013-libgnome-autoar-d7dbeb55107ccad5ff7f6513c8a1fdf7d7fd0e79.tar.gz
gsoc2013-libgnome-autoar-d7dbeb55107ccad5ff7f6513c8a1fdf7d7fd0e79.tar.bz2
gsoc2013-libgnome-autoar-d7dbeb55107ccad5ff7f6513c8a1fdf7d7fd0e79.tar.lz
gsoc2013-libgnome-autoar-d7dbeb55107ccad5ff7f6513c8a1fdf7d7fd0e79.tar.xz
gsoc2013-libgnome-autoar-d7dbeb55107ccad5ff7f6513c8a1fdf7d7fd0e79.tar.zst
gsoc2013-libgnome-autoar-d7dbeb55107ccad5ff7f6513c8a1fdf7d7fd0e79.zip
AutoarCreate: Prevent using uninitialized variables
-rw-r--r--gnome-autoar/autoar-create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnome-autoar/autoar-create.c b/gnome-autoar/autoar-create.c
index d179e59..94c591d 100644
--- a/gnome-autoar/autoar-create.c
+++ b/gnome-autoar/autoar-create.c
@@ -474,7 +474,7 @@ autoar_create_do_write_data (AutoarCreate *arcreate,
if (arcreate->priv->error != NULL)
return;
- if (g_cancellable_is_cancelled (priv->cancellable))
+ if (g_cancellable_is_cancelled (arcreate->priv->cancellable))
return;
priv = arcreate->priv;