encounter / objdiff

A local diffing tool for decompilation projects
Apache License 2.0
125 stars 21 forks source link

Add `#[serde(default)]` to `ReportFunction::address` #43

Closed ribbanya closed 9 months ago

ribbanya commented 9 months ago

When running objdiff report changes on a report generated by objdiff report generate, if any function is missing an address, deserialization will fail. This is because the default Option deserialization behavior is overwritten by the other processors. This change fixes that.

encounter commented 9 months ago

Thanks!