Skip to content

Commit

Permalink
gopher: don't send NUL byte
Browse files Browse the repository at this point in the history
Closes #466
  • Loading branch information
Orange Tsai authored and bagder committed Oct 1, 2015
1 parent c6ff538 commit 5bf36ea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/gopher.c
Expand Up @@ -83,16 +83,18 @@ static CURLcode gopher_do(struct connectdata *conn, bool *done)
char *sel;
char *sel_org = NULL;
ssize_t amount, k;
int len;

*done = TRUE; /* unconditionally */

/* Create selector. Degenerate cases: / and /1 => convert to "" */
if(strlen(path) <= 2)
if(strlen(path) <= 2) {
sel = (char *)"";
len = (int)strlen(sel);
}
else {
char *newp;
size_t j, i;
int len;

/* Otherwise, drop / and the first character (i.e., item type) ... */
newp = path;
Expand All @@ -113,7 +115,7 @@ static CURLcode gopher_do(struct connectdata *conn, bool *done)

/* We use Curl_write instead of Curl_sendf to make sure the entire buffer is
sent, which could be sizeable with long selectors. */
k = curlx_uztosz(strlen(sel));
k = curlx_uztosz(len);

for(;;) {
result = Curl_write(conn, sockfd, sel, k, &amount);
Expand Down

0 comments on commit 5bf36ea

Please sign in to comment.