X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2Fstore-kv.cc;h=1318126ec8d31d099af245c9696fc99c27104b31;hb=4db23448ce252728f10df967b55b2787d5fb8db5;hp=6b863d829041cbc620775cfd5e962f7083dd3cfe;hpb=ea04d8bdad2da0b59fed45d8ea0128bdba2eb792;p=bluesky.git diff --git a/bluesky/store-kv.cc b/bluesky/store-kv.cc index 6b863d8..1318126 100644 --- a/bluesky/store-kv.cc +++ b/bluesky/store-kv.cc @@ -62,18 +62,21 @@ static gpointer kvstore_new(const gchar *path) { /* TODO: Right now we leak this memory. We should probably clean up in * kvstore_destroy, but it's not a big deal. */ - gchar **target = g_strsplit(path, ":", 0); const gchar *host = "127.0.0.1", *port = "9090"; - if (target[0] != NULL) { - host = target[0]; - if (target[1] != NULL) { - port = target[1]; + if (path != NULL) { + gchar **target = g_strsplit(path, ":", 0); + if (target[0] != NULL) { + host = target[0]; + if (target[1] != NULL) { + port = target[1]; + } } } static volatile gsize once = 0; if (g_once_init_enter(&once)) { - thread_pool = g_thread_pool_new(kvstore_task, NULL, -1, FALSE, NULL); + thread_pool = g_thread_pool_new(kvstore_task, NULL, + bluesky_max_threads, FALSE, NULL); g_once_init_leave(&once, 1); }