Skip to content

Commit

Permalink
Merge pull request #1542 from crucialfelix/topic/quarks-avoid-gc-corr…
Browse files Browse the repository at this point in the history
…uption

fix #1476 stack corruption triggered by calling a git unixCmd
  • Loading branch information
telephon committed Jun 15, 2015
2 parents 8fd17d5 + 66a8c4f commit 9af6777
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SCClassLibrary/Common/Quarks/Git.sc
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ Git {
}
}
shaForTag { |tag|
^this.git(["rev-list", tag]).copyFromStart(39)
var out = this.git(["rev-list", tag, "--max-count=1"]);
^out.copyFromStart(39)
}
git { |args, cd=true|
var cmd;
Expand Down

0 comments on commit 9af6777

Please sign in to comment.