From 7bb6108c340bee88b0b72cd92cce83398b3234ee Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Fri, 25 Jan 2013 16:55:53 +0200 Subject: [PATCH] Small fix for a possible crash in divelist.c divelist.c:copy_tree_node(): pass the pointer "icon" to gtk_tree_store_set() Signed-off-by: Lubomir I. Ivanov Signed-off-by: Dirk Hohndel --- divelist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/divelist.c b/divelist.c index f9ca3ef41..8b86c5343 100644 --- a/divelist.c +++ b/divelist.c @@ -1776,7 +1776,7 @@ static int copy_tree_node(GtkTreeIter *a, GtkTreeIter *b) DIVE_OTU, store_dive.otu, DIVE_MAXCNS, store_dive.maxcns, DIVE_LOCATION, store_dive.location, - DIVE_LOC_ICON, &icon, + DIVE_LOC_ICON, icon, -1); free(cylinder_text); free(store_dive.location);