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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-12-26 15:03:07 +0400
committernulltoken <emeric.fermas@gmail.com>2012-12-27 02:07:25 +0400
commit50a762a563fe8116e2707ce1fcb75391d41dca23 (patch)
treee892158408191911921778bda4938f1989b97a4a /src/path.c
parent34b6f05f3984cad3ec05c6018828472356c45e28 (diff)
path: Teach UNC paths to git_path_dirname_r()
Fix libgit2/libgit2sharp#256
Diffstat (limited to 'src/path.c')
-rw-r--r--src/path.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/path.c b/src/path.c
index 569101c40..dd6bb70ad 100644
--- a/src/path.c
+++ b/src/path.c
@@ -19,6 +19,22 @@
#define LOOKS_LIKE_DRIVE_PREFIX(S) (git__isalpha((S)[0]) && (S)[1] == ':')
+static bool looks_like_network_computer_name(const char *path, int pos)
+{
+ if (pos < 3)
+ return false;
+
+ if (path[0] != '/' || path[1] != '/')
+ return false;
+
+ while (pos-- > 2) {
+ if (path[pos] == '/')
+ return false;
+ }
+
+ return true;
+}
+
/*
* Based on the Android implementation, BSD licensed.
* Check http://android.git.kernel.org/
@@ -111,6 +127,15 @@ int git_path_dirname_r(git_buf *buffer, const char *path)
len = 3;
goto Exit;
}
+
+ /* Similarly checks if we're dealing with a network computer name
+ '//computername/.git' will return '//computername/' */
+
+ if (looks_like_network_computer_name(path, len)) {
+ len++;
+ goto Exit;
+ }
+
#endif
Exit: