mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 05:48:40 +00:00
fix uinited var warning
This commit is contained in:
committed by
Ryan Fleury
parent
153d78ec6a
commit
2ba9f2a61b
@@ -18,7 +18,7 @@ pe_name_from_export_parse(PE_ExportParse *exp)
|
|||||||
internal U16
|
internal U16
|
||||||
pe_hint_or_ordinal_from_export_parse(PE_ExportParse *exp)
|
pe_hint_or_ordinal_from_export_parse(PE_ExportParse *exp)
|
||||||
{
|
{
|
||||||
U16 hint_or_ordinal;
|
U16 hint_or_ordinal = max_U16;
|
||||||
if (exp->import_by == COFF_ImportBy_Ordinal) {
|
if (exp->import_by == COFF_ImportBy_Ordinal) {
|
||||||
hint_or_ordinal = exp->ordinal;
|
hint_or_ordinal = exp->ordinal;
|
||||||
} else if (exp->import_by == COFF_ImportBy_Name) {
|
} else if (exp->import_by == COFF_ImportBy_Name) {
|
||||||
|
|||||||
Reference in New Issue
Block a user