wisk / medusa

An open source interactive disassembler
Other
1.04k stars 92 forks source link

typo in code #11

Closed ivan-kulikov-dev closed 10 years ago

ivan-kulikov-dev commented 10 years ago

https://github.com/wisk/medusa/blob/dev/src/core/module.cpp#L172

TGetDabatase pGetDatabase

https://github.com/wisk/medusa/blob/dev/inc/medusa/database.hpp#L123

typedef Database* (*TGetDabatase)(void);

wisk commented 10 years ago

Sorry, I didn't get it. Where's the typo?

Necrolis commented 10 years ago

I think he means the misspelling of "database", ie: typedef Database* (*TGetDabatase)(void); should be typedef Database* (*TGetDatabase)(void);

wisk commented 10 years ago

Oh right! Nice catch, thanks :)

wisk commented 10 years ago

The patch https://github.com/wisk/medusa/commit/46ad32fc1da270f49493c7c5e8154e1594fee5e5 solves this issue, thanks again.