[brasero/gnome-2-28] Fix memory leak that prevented some GErrors to be propagated Fix #611340 No explicit error when perm



commit 1532f26ef3a4d6ed3fc05d4a72f5a6c0ae2e2e0a
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date:   Tue Mar 2 20:02:25 2010 +0100

    Fix memory leak that prevented some GErrors to be propagated
    Fix #611340 No explicit error when permissions on the ISO are missing

 libbrasero-burn/burn-task.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/libbrasero-burn/burn-task.c b/libbrasero-burn/burn-task.c
index a3bf84a..e471569 100644
--- a/libbrasero-burn/burn-task.c
+++ b/libbrasero-burn/burn-task.c
@@ -316,6 +316,9 @@ brasero_task_start_item (BraseroTask *task,
 		result = klass->start (item, &ret_error);
 	}
 
+	if (ret_error)
+		g_propagate_error (error, ret_error);
+
 	return result;
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]