fixup "vfs_trace: VFS plugin that offers trace buffer access" (coding style)

This commit is contained in:
Christian Helmuth 2019-06-17 09:42:01 +02:00
parent 2ef251189f
commit c0d19c83a2

View File

@ -365,11 +365,12 @@ struct Vfs_trace::Local_factory : File_system_factory
try {
null_policy.construct(_env.env(), "null");
_policy_id = _trace.alloc_policy(null_policy->size());
} catch (Out_of_caps) { throw; }
catch (Out_of_ram) { throw; }
catch (...) {
}
catch (Out_of_caps) { throw; }
catch (Out_of_ram) { throw; }
catch (...) {
error("failed to attach 'null' trace policy."
"Please make sure it is provided as a ROM module.");
"Please make sure it is provided as a ROM module.");
throw;
}