SmartSmallBoy

Results 3 issues of SmartSmallBoy

https://github.com/crash-utility/crash/blob/d0164e7e480ad2ffd3fe73fe53c46087e5e137a6/arm64.c#L1283C1-L1283C1 KASLR has already added an offset during the relocate() in the symbol table initialization. Why is there a need to add an offset to `kimage_offset` here as well?

### 你在什么场景下需要该功能? 写个debian服务,编译+打包 ### 描述可能的解决方案 Xpack支持 set_formats("deb") ### 描述你认为的候选方案 _No response_ ### 其他信息 _No response_

feature request

#include "cdict.h" #include typedef char *string; CDict(string, string) cdict_string_t; void test(cdict_string_t *dict) { char key[8] = "key1"; char value[8] = "value1"; cdict__add(dict, key, value); bool contains = cdict__contains(dict, "key1"); assert(contains);...