andrew-d / andrew-d/rough-auditing-tool-for-security
Sometime ptr->data is NULL
未關閉
auto-migrated
Priority-Medium
Type-Defect
- 主要語言
- C
- 星號
- 91
- 分支
- 29
- PR 合併指標
- 30 天內沒有已合併 PR
描述
```
Hello,
Just a little fix in Rats 2.3 :
Bug description :
Sometime ptr->data is NULL (sorry I can't be more precise).
In report.c lign 558 update :
- printf(" %s\n",
- ptr->data->Name);
with :
+ if( !ptr->data )
+ printf(" None\n");
+ else
+ printf(" %s\n",
+ ptr->data->Name);
Best regards
```
Original issue reported on code.google.com by `lemath...@gmail.com` on 28 Jun 2011 at 7:48
貢獻指南
這個儲存庫沒有索引到貢獻指南
評估
這個 Issue 還沒有評估資料。