Skip to content

Commit 67be02b

Browse files
committed
Update logic in Proxy to re-use taggerHandle
1 parent f2baf87 commit 67be02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibGit2Sharp/Core/Proxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2892,7 +2892,7 @@ public static Signature git_tag_tagger(GitObjectSafeHandle tag)
28922892
Signature tagger = null;
28932893
if (taggerHandle != IntPtr.Zero)
28942894
{
2895-
tagger = new Signature(NativeMethods.git_tag_tagger(tag));
2895+
tagger = new Signature(taggerHandle);
28962896
}
28972897

28982898
return tagger;

0 commit comments

Comments
 (0)