gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r5914 - GNUnet/src/applications/fs/module


From: gnunet
Subject: [GNUnet-SVN] r5914 - GNUnet/src/applications/fs/module
Date: Sat, 15 Dec 2007 03:42:56 -0700 (MST)

Author: grothoff
Date: 2007-12-15 03:42:55 -0700 (Sat, 15 Dec 2007)
New Revision: 5914

Modified:
   GNUnet/src/applications/fs/module/fs.c
Log:
fix

Modified: GNUnet/src/applications/fs/module/fs.c
===================================================================
--- GNUnet/src/applications/fs/module/fs.c      2007-12-15 10:41:08 UTC (rev 
5913)
+++ GNUnet/src/applications/fs/module/fs.c      2007-12-15 10:42:55 UTC (rev 
5914)
@@ -1248,7 +1248,10 @@
             prev->next = pos->next;
           dht->get_stop (pos->rec);
           GNUNET_free (pos);
-          pos = prev->next;
+          if (prev == NULL)
+            pos = dht_pending;
+          else
+           pos = prev->next;
           continue;
         }
       prev = pos;





reply via email to

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