5509c00
From 89053aff0cc36dfcee6fda6e83b13f6f68c05a82 Mon Sep 17 00:00:00 2001
5509c00
From: Thomas Hindoe Paaboel Andersen <phomes@gmail.com>
5509c00
Date: Thu, 12 Jun 2014 22:50:04 +0200
5509c00
Subject: [PATCH] cryptsetup: check that password is not null
5509c00
5509c00
Beef up the assert to protect against passing null to strlen.
5509c00
5509c00
Found with scan-build.
5509c00
5509c00
(cherry picked from commit f268f57f6344d3a2ccf447352ff3ed1313c4a199)
5509c00
---
5509c00
 src/cryptsetup/cryptsetup.c | 2 +-
5509c00
 1 file changed, 1 insertion(+), 1 deletion(-)
5509c00
5509c00
diff --git a/src/cryptsetup/cryptsetup.c b/src/cryptsetup/cryptsetup.c
5509c00
index 812b32f6..a67d85e6 100644
5509c00
--- a/src/cryptsetup/cryptsetup.c
5509c00
+++ b/src/cryptsetup/cryptsetup.c
5509c00
@@ -344,7 +344,7 @@ static int attach_tcrypt(struct crypt_device *cd,
5509c00
 
5509c00
         assert(cd);
5509c00
         assert(name);
5509c00
-        assert(key_file || passwords);
5509c00
+        assert(key_file || (passwords && passwords[0]));
5509c00
 
5509c00
         if (arg_tcrypt_hidden)
5509c00
                 params.flags |= CRYPT_TCRYPT_HIDDEN_HEADER;