[pacman-dev] [PATCH 2/7] pacman-conf: free rootdir before replacing

Andrew Gregory andrew.gregory.8 at gmail.com
Sat Jan 16 07:20:56 UTC 2021


Signed-off-by: Andrew Gregory <andrew.gregory.8 at gmail.com>
---
 src/pacman/pacman-conf.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/pacman/pacman-conf.c b/src/pacman/pacman-conf.c
index 463badf1..05492ed9 100644
--- a/src/pacman/pacman-conf.c
+++ b/src/pacman/pacman-conf.c
@@ -76,6 +76,7 @@ static void parse_opts(int argc, char **argv)
 				config_file = optarg;
 				break;
 			case 'R':
+				free(config->rootdir);
 				if ((config->rootdir = strdup(optarg)) == NULL) {
 					fprintf(stderr, _("error setting rootdir '%s': out of memory\n"), optarg);
 					cleanup();
-- 
2.30.0


More information about the pacman-dev mailing list