mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
Ignoring null packages list
This commit is contained in:
parent
a270456278
commit
5192380549
@ -477,6 +477,13 @@ ManifestController::Impl::isIgnoreFile(const string &new_manifest_file) const
|
||||
manifest.get(ch);
|
||||
}
|
||||
|
||||
if (!manifest.good() || ch != ':') return false;
|
||||
manifest.get(ch);
|
||||
|
||||
while (manifest.good() && isspace(ch)) {
|
||||
manifest.get(ch);
|
||||
}
|
||||
|
||||
if (!manifest.good() || ch != 'n') return false;
|
||||
manifest.get(ch);
|
||||
if (!manifest.good() || ch != 'u') return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user