* trans/mtab.c (main): Fix initialization of mtab in one-shot mode.
---
 trans/mtab.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/trans/mtab.c b/trans/mtab.c
index 8c9f8d3..df03b1d 100644
--- a/trans/mtab.c
+++ b/trans/mtab.c
@@ -255,7 +255,7 @@ main (int argc, char *argv[])
   else
     {
       /* One-shot mode.         */
-      struct mtab mtab = { NULL, 0, 0 };
+      struct mtab mtab = { .lock = PTHREAD_MUTEX_INITIALIZER };
       err = mtab_populate (&mtab, target_path, insecure);
       if (err)
        error (5, err, "%s", target_path);
-- 
2.0.0.rc2


Reply via email to