Jakub Narebski <jnareb@xxxxxxxxx> writes: > Petr Baudis <pasky@xxxxxxx> writes: > >> This is important for the list of clone urls, where if there are >> no per-repository clone URL configured, the default base URLs >> are never used for URL construction with this patch. > > Thanks. > >> @@ -1512,7 +1512,7 @@ sub config_to_int { >> sub config_to_multi { >> my $val = shift; >> >> - return ref($val) ? $val : [ $val ]; >> + return ref($val) ? $val : $val ? [ $val ] : []; >> } > > Shouldn't it be > > + return ref($val) ? $val : defined($val) ? [ $val ] : []; I think so. Pasky? - 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