The variable is assigned unconditionally in print_push_status, but print_push_status is not reached by all codepaths. In particular, this fixes a bug where "git push ... nonexisting-branch" was complaining about non-fast forward. Signed-off-by: Matthieu Moy <Matthieu.Moy@xxxxxxx> --- Just making sure the patch hasn't been forgotten ... (and changed the subject from do_push to transport_push) Regards, transport.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/transport.c b/transport.c index 4cb8077..18db3d3 100644 --- a/transport.c +++ b/transport.c @@ -871,6 +871,7 @@ int transport_push(struct transport *transport, int refspec_nr, const char **refspec, int flags, int * nonfastforward) { + *nonfastforward = 0; verify_remote_names(refspec_nr, refspec); if (transport->push) -- 1.6.5.rc1.11.g2d184.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html