fix bug with order args and no revision

This commit is contained in:
Russell Belfer 2013-07-03 15:08:54 -07:00 committed by Vicent Marti
parent 2b3bd8ecd8
commit 5a169711fa

View File

@ -86,9 +86,12 @@ static int add_revision(struct log_state *s, const char *revstr)
"Could not open repository", s->repodir); "Could not open repository", s->repodir);
} }
if (!revstr) if (!revstr) {
push_rev(s, NULL, hide); push_rev(s, NULL, hide);
else if (*revstr == '^') { return 0;
}
if (*revstr == '^') {
revs.flags = GIT_REVPARSE_SINGLE; revs.flags = GIT_REVPARSE_SINGLE;
hide = !hide; hide = !hide;
if (!git_revparse_single(&revs.from, s->repo, revstr + 1)) if (!git_revparse_single(&revs.from, s->repo, revstr + 1))