Skip to content

Commit

Permalink
Merge remote-tracking branch 'OFW/gsurkov/3871_ir_negative_timings' i…
Browse files Browse the repository at this point in the history
…nto dev
  • Loading branch information
xMasterX committed Jul 15, 2024
2 parents 57f3bce + b7f1995 commit 3d3a989
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/flipper_format/flipper_format_stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,11 @@ bool flipper_format_stream_read_value_line(
}; break;
case FlipperStreamValueUint32: {
uint32_t* data = _data;
scan_values = sscanf(furi_string_get_cstr(value), "%" PRIu32, &data[i]);
// Minus sign is allowed in scanf() for unsigned numbers, resulting in unintentionally huge values with no error reported
if(!furi_string_start_with(value, "-")) {
scan_values =
sscanf(furi_string_get_cstr(value), "%" PRIu32, &data[i]);
}
}; break;
case FlipperStreamValueHexUint64: {
uint64_t* data = _data;
Expand Down

0 comments on commit 3d3a989

Please sign in to comment.