Vector35 / binaryninja-api

Public API, examples, documentation and issues for Binary Ninja
https://binary.ninja/
MIT License
839 stars 194 forks source link

Missing type info for strcmp on linux-aarch64 #5546

Open joelreymont opened 3 weeks ago

joelreymont commented 3 weeks ago

Version and Platform (required):

Internal binary major dine favor.

In DjiAircraftInfo_GetAircraftTypeByCameraVersion...

00047dd0      else if (strcmp() == 0)
00047e50          *type = DJI_AIRCRAFT_TYPE_M30

becase int64_t strcmp().

xusheng6 commented 3 weeks ago

image

We are also missing that for memcmp, which is quite unexpected. The good news is we are working on a fallback type library, and it will fix the issue

xusheng6 commented 3 weeks ago

Similar to https://github.com/Vector35/binaryninja-api/issues/5364