virGetUserCacheDirectory() *never* *ever* returns NULL, making the
checks for it completely unnecessary.
Signed-off-by: Fabiano FidĂȘncio <fidencio(a)redhat.com>
---
tools/vsh.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/tools/vsh.c b/tools/vsh.c
index bbb6227130..b982aeb359 100644
--- a/tools/vsh.c
+++ b/tools/vsh.c
@@ -2913,11 +2913,6 @@ vshReadlineInit(vshControl *ctl)
*/
userdir = virGetUserCacheDirectory();
- if (userdir == NULL) {
- vshError(ctl, "%s", _("Could not determine home
directory"));
- goto cleanup;
- }
-
ctl->historydir = g_strdup_printf("%s/%s", userdir, ctl->name);
ctl->historyfile = g_strdup_printf("%s/history", ctl->historydir);
--
2.24.1