The malloc patch from Jan Andres fixed the problem that was causing a segfault when freeing the lock token, and Johannes Schindelin found and fixed a problem when no URL is specified on the command line. Signed-off-by: Nick Hengeveld <nickh@reactrix.com> --- http-push.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) applies-to: 39ddd76c46b92ac971b2325acf9efecf443fbe6b 1510a5b7deec93abcf010aa867adf27ad7750293 diff --git a/http-push.c b/http-push.c index bbb5118..56c2bb5 100644 --- a/http-push.c +++ b/http-push.c @@ -1009,9 +1009,7 @@ static int unlock_remote(struct active_l if (lock->owner != NULL) free(lock->owner); free(lock->url); -/* Freeing the token causes a segfault... free(lock->token); -*/ free(lock); return rc; @@ -1274,6 +1272,9 @@ int main(int argc, char **argv) break; } + if (!remote->url) + usage(http_push_usage); + memset(remote_dir_exists, 0, 256); http_init(); --- 0.99.9.GIT - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Wed Nov 30 04:34:10 2005
This archive was generated by hypermail 2.1.8 : 2005-11-30 04:34:17 EST