X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2Fstore-kv.cc;fp=bluesky%2Fstore-kv.cc;h=de16832d50d30718f1b72b967728144419dca6c1;hb=2901c11f2a4adfa9b3db422692bb9e2232be0a04;hp=6b863d829041cbc620775cfd5e962f7083dd3cfe;hpb=ea04d8bdad2da0b59fed45d8ea0128bdba2eb792;p=bluesky.git diff --git a/bluesky/store-kv.cc b/bluesky/store-kv.cc index 6b863d8..de16832 100644 --- a/bluesky/store-kv.cc +++ b/bluesky/store-kv.cc @@ -62,12 +62,14 @@ 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]; + } } }