From 28b2dbb52c8b7bb0b611b2e86cef69f3e911facb Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Sun, 4 Mar 2007 09:16:28 +0000 Subject: * Fixed the handle realroot stuff * Added some {} --- lib/libalpm/handle.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lib/libalpm/handle.c') diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c index c17d86a5..b044adcb 100644 --- a/lib/libalpm/handle.c +++ b/lib/libalpm/handle.c @@ -155,13 +155,13 @@ void alpm_option_set_root(const char *root) /* According to the man page, realpath is safe to use IFF the second arg is * NULL. */ char *realroot = realpath(root, NULL); - if(!realroot) { - realroot = root; + if(realroot) { + root = realroot; + } else { _alpm_log(PM_LOG_ERROR, _("cannot canonicalize specified root path '%s'"), root); } - /* check again, in case both are null */ - if(realroot) { + if(root) { /* verify root ends in a '/' */ int rootlen = strlen(realroot); if(realroot[rootlen-1] != '/') { @@ -172,6 +172,8 @@ void alpm_option_set_root(const char *root) handle->root[rootlen-1] = '/'; _alpm_log(PM_LOG_DEBUG, _("option 'root' = %s"), handle->root); + } + if(realroot) { free(realroot); } } -- cgit v1.2.3-24-g4f1b