Fixed a missing "break" in ntfssecaudit.c

A missing "break" in a case construct could be troublesome.
(suggested by Ulf Zibis)
This commit is contained in:
Jean-Pierre André 2016-05-04 09:19:39 +02:00
parent df7f3b9151
commit 1840b52d12

View File

@ -1073,6 +1073,7 @@ static void showsid(const char *attr, int off, const char *prefix, int level)
} }
break; break;
} }
break;
default : /* three levels or more */ default : /* three levels or more */
second = get4l(attr,off+12); second = get4l(attr,off+12);
last = get4l(attr,off+4+4*cnt); last = get4l(attr,off+4+4*cnt);