From 1840b52d12134addbe427cbfc0589ca8a9718545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Wed, 4 May 2016 09:19:39 +0200 Subject: [PATCH] Fixed a missing "break" in ntfssecaudit.c A missing "break" in a case construct could be troublesome. (suggested by Ulf Zibis) --- ntfsprogs/ntfssecaudit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ntfsprogs/ntfssecaudit.c b/ntfsprogs/ntfssecaudit.c index 62e578d0..cde4477e 100644 --- a/ntfsprogs/ntfssecaudit.c +++ b/ntfsprogs/ntfssecaudit.c @@ -1073,6 +1073,7 @@ static void showsid(const char *attr, int off, const char *prefix, int level) } break; } + break; default : /* three levels or more */ second = get4l(attr,off+12); last = get4l(attr,off+4+4*cnt);