]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch.c
notmuch: Fix setup so that accepting the default mail path works.
[notmuch] / notmuch.c
index 966901f04b1c42b8affcfe23496b61eab3e4f6bc..1ebd613eb3c95ede50914f2647fc9e5bb81f68d4 100644 (file)
--- a/notmuch.c
+++ b/notmuch.c
@@ -289,13 +289,17 @@ setup_command (int argc, char *argv[])
     getline (&mail_directory, &line_size, stdin);
     printf ("\n");
 
+    if (mail_directory &&
+       mail_directory[strlen(mail_directory)-1] == '\n')
+    {
+       mail_directory[strlen(mail_directory)-1] = '\0';
+    }
+
     if (mail_directory == NULL || strlen (mail_directory) == 0) {
        if (mail_directory)
            free (mail_directory);
        mail_directory = default_path;
     } else {
-       if (mail_directory[strlen(mail_directory)-1] == '\n')
-           mail_directory[strlen(mail_directory)-1] = '\0';
        /* XXX: Instead of telling the user to use an environment
         * variable here, we should really be writing out a configuration
         * file and loading that on the next run. */