aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/namespace.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/namespace.c')
-rw-r--r--src/plugins/fs/namespace.c22
1 files changed, 19 insertions, 3 deletions
diff --git a/src/plugins/fs/namespace.c b/src/plugins/fs/namespace.c
index 6378ee53..faf02567 100644
--- a/src/plugins/fs/namespace.c
+++ b/src/plugins/fs/namespace.c
@@ -937,9 +937,9 @@ void on_namespaceUpdateButton_clicked_fs(GtkWidget * dummy1,
937 GtkTreeSelection * selectionNamespace; 937 GtkTreeSelection * selectionNamespace;
938 IUC cls; 938 IUC cls;
939 gint num; 939 gint num;
940 const char * last; 940 char * last;
941 const char * next; 941 char * next;
942 const char * freq; 942 char * freq;
943 943
944 DEBUG_BEGIN(); 944 DEBUG_BEGIN();
945 contentList 945 contentList
@@ -1031,6 +1031,9 @@ void on_namespaceUpdateButton_clicked_fs(GtkWidget * dummy1,
1031 GE_BREAK(ectx, 0); 1031 GE_BREAK(ectx, 0);
1032 UNREF(metaXML); 1032 UNREF(metaXML);
1033 metaXML = NULL; 1033 metaXML = NULL;
1034 FREENONNULL(last);
1035 FREENONNULL(next);
1036 FREENONNULL(freq);
1034 return; 1037 return;
1035 } 1038 }
1036 if (OK == enc2hash(last, 1039 if (OK == enc2hash(last,
@@ -1063,6 +1066,9 @@ void on_namespaceUpdateButton_clicked_fs(GtkWidget * dummy1,
1063 GE_BREAK(ectx, 0); 1066 GE_BREAK(ectx, 0);
1064 UNREF(metaXML); 1067 UNREF(metaXML);
1065 metaXML = NULL; 1068 metaXML = NULL;
1069 FREENONNULL(last);
1070 FREENONNULL(next);
1071 FREENONNULL(freq);
1066 return; 1072 return;
1067 } 1073 }
1068 hash2enc(&nextId, 1074 hash2enc(&nextId,
@@ -1116,6 +1122,9 @@ void on_namespaceUpdateButton_clicked_fs(GtkWidget * dummy1,
1116 error); 1122 error);
1117 gtk_dialog_run(GTK_DIALOG(dialog)); 1123 gtk_dialog_run(GTK_DIALOG(dialog));
1118 gtk_widget_destroy(dialog); 1124 gtk_widget_destroy(dialog);
1125 FREENONNULL(last);
1126 FREENONNULL(next);
1127 FREENONNULL(freq);
1119 return; 1128 return;
1120 } 1129 }
1121 hash(identifierName, 1130 hash(identifierName,
@@ -1139,6 +1148,9 @@ void on_namespaceUpdateButton_clicked_fs(GtkWidget * dummy1,
1139 gtk_widget_destroy(dialog); 1148 gtk_widget_destroy(dialog);
1140 UNREF(metaXML); 1149 UNREF(metaXML);
1141 metaXML = NULL; 1150 metaXML = NULL;
1151 FREENONNULL(last);
1152 FREENONNULL(next);
1153 FREENONNULL(freq);
1142 DEBUG_END(); 1154 DEBUG_END();
1143} 1155}
1144 1156
@@ -1236,6 +1248,8 @@ void on_namespaceRatingSpinButton_changed_fs(GtkWidget * dummy,
1236 gtk_widget_set_sensitive(spin, 1248 gtk_widget_set_sensitive(spin,
1237 FALSE); 1249 FALSE);
1238 } 1250 }
1251 FREENONNULL(description);
1252 FREENONNULL(encStr);
1239 DEBUG_END(); 1253 DEBUG_END();
1240} 1254}
1241 1255
@@ -1310,6 +1324,8 @@ void on_searchNamespaceComboBoxEntry_changed_fs(GtkWidget * dummy,
1310 gtk_widget_set_sensitive(spin, 1324 gtk_widget_set_sensitive(spin,
1311 FALSE); 1325 FALSE);
1312 } 1326 }
1327 FREENONNULL(descStr);
1328 FREENONNULL(encStr);
1313 DEBUG_END(); 1329 DEBUG_END();
1314} 1330}
1315 1331