Skip to content

Commit

Permalink
mingw: handle absolute paths in expand_user_path()
Browse files Browse the repository at this point in the history
On Windows, an absolute POSIX path needs to be turned into a Windows
one.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Feb 7, 2019
1 parent 27e3e78 commit 5fb212f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions path.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "path.h"
#include "packfile.h"
#include "object-store.h"
#include "exec-cmd.h"

static int get_st_mode_bits(const char *path, int *mode)
{
Expand Down Expand Up @@ -711,6 +712,10 @@ char *expand_user_path(const char *path, int real_home)

if (path == NULL)
goto return_null;
#ifdef __MINGW32__
if (path[0] == '/')
return system_path(path + 1);
#endif
if (path[0] == '~') {
const char *first_slash = strchrnul(path, '/');
const char *username = path + 1;
Expand Down

0 comments on commit 5fb212f

Please sign in to comment.