diff options
author | corvid <corvid@lavabit.com> | 2009-06-24 19:45:34 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-06-24 19:45:34 +0000 |
commit | 7faef726c117a3c5f3d0aa2c859abb9c8abd0b76 (patch) | |
tree | 08dd3b9c51509180c52542f73a0ae50c0f580c81 /src/capi.c | |
parent | 2afc633e494bbc646c3bdb2be99d6e73ec110ac9 (diff) |
segfault on NULL URL when dpis not found
Diffstat (limited to 'src/capi.c')
-rw-r--r-- | src/capi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -583,7 +583,7 @@ void a_Capi_ccc(int Op, int Branch, int Dir, ChainLink *Info, a_UIcmd_set_msg(conn->bw, "ERROR: can't start dpid daemon " "(URL scheme = '%s')!", - URL_SCHEME(conn->url)); + conn->url ? URL_SCHEME(conn->url) : ""); /* finish conn */ Capi_conn_unref(conn); dFree(Info); |