Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJameson Miller <jamill@microsoft.com>2014-07-01 06:23:17 +0400
committerJameson Miller <jamill@microsoft.com>2014-07-01 06:23:17 +0400
commit67be02b31995c33a3bb91de139e00d53b754ffae (patch)
tree23dea2433d3b4b5e99bc18be54c98a3ca1e429e3 /LibGit2Sharp
parentf2baf871b71add1a456f90cfa83e7a45b583b571 (diff)
Update logic in Proxy to re-use taggerHandle
Diffstat (limited to 'LibGit2Sharp')
-rw-r--r--LibGit2Sharp/Core/Proxy.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Core/Proxy.cs b/LibGit2Sharp/Core/Proxy.cs
index 82979465..4850a0b5 100644
--- a/LibGit2Sharp/Core/Proxy.cs
+++ b/LibGit2Sharp/Core/Proxy.cs
@@ -2892,7 +2892,7 @@ namespace LibGit2Sharp.Core
Signature tagger = null;
if (taggerHandle != IntPtr.Zero)
{
- tagger = new Signature(NativeMethods.git_tag_tagger(tag));
+ tagger = new Signature(taggerHandle);
}
return tagger;