Corrected issue with parent and child cells in completely different

directories starting from root getting the root directory "/"
removed from the front of the child cell path.
This commit is contained in:
Tim Edwards 2020-09-04 09:57:16 -04:00
parent 5148049ffc
commit 1ef4190589
2 changed files with 5 additions and 1 deletions

View File

@ -1 +1 @@
8.3.53
8.3.54

View File

@ -3173,6 +3173,10 @@ dbWriteCellFunc(cellUse, cdarg)
}
else
break;
/* If there are no common components, then restore the leading '/' */
if ((*pathorigin == '/') && (pathstart == pathorigin + 1))
pathstart = pathorigin;
}
if (pathend != NULL)
{