actually make use of an intermediate variable in cmd_clone() found by tracey's scan-build
diff --git a/got/got.c b/got/got.c
index c344b32..2b4d757 100644
--- a/got/got.c
+++ b/got/got.c
@@ -1115,7 +1115,7 @@ cmd_clone(int argc, char *argv[])
usage_clone();
error = got_fetch_parse_uri(&proto, &host, &port, &server_path,
- &repo_name, argv[0]);
+ &repo_name, uri);
if (error)
goto done;