gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r7467 - GNUnet/src/applications/fs/fsui


From: gnunet
Subject: [GNUnet-SVN] r7467 - GNUnet/src/applications/fs/fsui
Date: Sat, 19 Jul 2008 06:23:36 -0600 (MDT)

Author: durner
Date: 2008-07-19 06:23:36 -0600 (Sat, 19 Jul 2008)
New Revision: 7467

Modified:
   GNUnet/src/applications/fs/fsui/download.c
Log:
fix crash

Modified: GNUnet/src/applications/fs/fsui/download.c
===================================================================
--- GNUnet/src/applications/fs/fsui/download.c  2008-07-19 12:17:15 UTC (rev 
7466)
+++ GNUnet/src/applications/fs/fsui/download.c  2008-07-19 12:23:36 UTC (rev 
7467)
@@ -762,7 +762,8 @@
     GNUNET_ECRS_uri_destroy (dl->completedDownloads[i]);
   GNUNET_array_grow (dl->completedDownloads, dl->completedDownloadsCount, 0);
   GNUNET_ECRS_uri_destroy (dl->fi.uri);
-  GNUNET_meta_data_destroy (dl->fi.meta);
+  if (dl->fi.meta != NULL)
+    GNUNET_meta_data_destroy (dl->fi.meta);
   GNUNET_free (dl->filename);
   GNUNET_free (dl);
   return GNUNET_OK;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]