Commit 7affc2f7 removed var initialization

That commit accidentally removed the initialization of the "start"
variable giving undefined results for the host extraction from the
url input.
This commit is contained in:
Russell Belfer 2013-08-14 10:58:02 -07:00
parent ad0af71575
commit c87bf86cd7

View File

@ -215,6 +215,7 @@ static int git_ssh_extract_url_parts(
*username = git__substrdup(url, at - url);
GITERR_CHECK_ALLOC(*username);
} else {
start = url;
*username = NULL;
}