gnunet-svn
[Top][All Lists]
Advanced

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

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


From: grothoff
Subject: [GNUnet-SVN] r2848 - GNUnet/src/applications/fs/fsui
Date: Fri, 19 May 2006 08:51:51 -0700 (PDT)

Author: grothoff
Date: 2006-05-19 08:51:47 -0700 (Fri, 19 May 2006)
New Revision: 2848

Modified:
   GNUnet/src/applications/fs/fsui/fsui.c
Log:
stack size too small -- may fix mantis 996 or 1092 or both

Modified: GNUnet/src/applications/fs/fsui/fsui.c
===================================================================
--- GNUnet/src/applications/fs/fsui/fsui.c      2006-05-19 15:18:25 UTC (rev 
2847)
+++ GNUnet/src/applications/fs/fsui/fsui.c      2006-05-19 15:51:47 UTC (rev 
2848)
@@ -472,7 +472,7 @@
          goto WARN;
        }
        list
-         = MALLOC(sizeof(FSUI_SearchList));
+         = MALLOC(sizeof(FSUI_SearchList));    
        list->uri
          = ECRS_stringToUri(buf);
        FREE(buf);
@@ -592,7 +592,7 @@
        if (0 != PTHREAD_CREATE(&list->handle,
                                &searchThread,
                                list,
-                               16 * 1024))
+                               32 * 1024))
          DIE_STRERROR("pthread_create");
        
        /* finally: prepend to list */





reply via email to

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