Ilari Liusvaara <ilari.liusvaara@xxxxxxxxxxx> writes: > On Wed, Jan 27, 2010 at 01:39:00PM -0500, Daniel Barkalow wrote: >> On Wed, 27 Jan 2010, Ilari Liusvaara wrote: >> > >> > if (!remote) >> > die("No remote provided to transport_get()"); >> > >> > ret->remote = remote; >> > + helper = remote->foreign_vcs; >> >> Needs to be "helper = remote ? remote->foreign_vcs : NULL", for the same >> reason that the test below had been "remote && remote->foreign_vcs". > > Few lines above that: > > if (!remote) > die("No remote provided to transport_get()"); Perhaps we would want this micro-clean-up on top then. -- >8 -- Subject: transport_get(): drop unnecessary check for !remote At the beginning of the function we make sure remote is not NULL, and the remainder of the funciton already depends on it. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- diff --git a/transport.c b/transport.c index 87581b8..3846aac 100644 --- a/transport.c +++ b/transport.c @@ -921,7 +921,7 @@ struct transport *transport_get(struct remote *remote, const char *url) ret->remote = remote; helper = remote->foreign_vcs; - if (!url && remote && remote->url) + if (!url && remote->url) url = remote->url[0]; ret->url = url; -- 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