Skip to content

Commit

Permalink
Parse someip in non-strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kruss committed Oct 4, 2024
1 parent 7751b6e commit 01e66ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/apps/indexer/parsers/src/someip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl FibexMetadata {
) -> Option<String> {
if let Ok(mut lock) = self.types.lock() {
if let Some(som_type) = lock.get_som_type(fibex_type) {
match som_type.parse(&mut SOMParser::new(payload)) {
match som_type.parse(&mut SOMParser::new(payload).non_strict()) {
Ok(_) => {
return Some(
som_type
Expand Down

0 comments on commit 01e66ca

Please sign in to comment.