Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在windbg中调试了一些代码,但我无法理解一些汇编代码
78151113 ff1230401e78 call dword ptr [Somefunction (781e9950)] ds:0023:781e9950=028d1170
有人能解释一下这个语句是什么意思吗?我知道这是调用语句,但它是如何跳转到 028d1170 地址的
这个地址调用一个函数指针。函数指针存储在地址 781e9950。如果你检查地址 781e9950 的内容,你会发现它的值是 028d1170。