diff options
-rw-r--r-- | lib/gopher.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/gopher.c b/lib/gopher.c index 744d06ad7..b296c62d1 100644 --- a/lib/gopher.c +++ b/lib/gopher.c @@ -88,7 +88,10 @@ static CURLcode gopher_do(struct connectdata *conn, bool *done) *done = TRUE; /* unconditionally */ - if(path && query) + /* path is guaranteed non-NULL */ + DEBUGASSERT(path); + + if(query) gopherpath = aprintf("%s?%s", path, query); else gopherpath = strdup(path); |