Fix regression with nnn.vim

This commit is contained in:
Arun Prakash Jana 2019-03-11 00:49:46 +05:30
parent d5245ac5ec
commit 5d9bfed5a3
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

View File

@ -4005,7 +4005,7 @@ int main(int argc, char *argv[])
else {
/* copier used as tmp var */
copier = realpath(optarg, g_cppath);
if (!copier) {
if (!g_cppath[0]) {
xerror();
return 1;
}