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:
parent
5148049ffc
commit
1ef4190589
|
|
@ -3173,6 +3173,10 @@ dbWriteCellFunc(cellUse, cdarg)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
/* If there are no common components, then restore the leading '/' */
|
||||||
|
if ((*pathorigin == '/') && (pathstart == pathorigin + 1))
|
||||||
|
pathstart = pathorigin;
|
||||||
}
|
}
|
||||||
if (pathend != NULL)
|
if (pathend != NULL)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue