diff options
Diffstat (limited to 'src/svm')
-rw-r--r-- | src/svm/svm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/svm/svm.c b/src/svm/svm.c index 600fa7448ac..0442ecb2950 100644 --- a/src/svm/svm.c +++ b/src/svm/svm.c @@ -862,7 +862,8 @@ svm_region_find_or_create (svm_map_region_args_t * a) ASSERT (mp); /* Map the named region from the correct chroot environment */ - a->root_path = (char *) mp->root_path; + if (a->root_path == NULL) + a->root_path = (char *) mp->root_path; /* * See if this region is already known. If it is, we're |