Skip to content

Commit

Permalink
fix: fix lookup_symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Jun 27, 2024
1 parent a297a9f commit c4ad751
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/pl/SymbolProvider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ const char* const* pl_lookup_symbol_disp(void* func, size_t* resultLength, unsig
result[i] = new char[sym->length() + 1];
std::copy(sym->begin(), sym->end(), result[i]);
result[i][sym->length()] = '\0';
i++;
}
return result;
}
Expand Down

0 comments on commit c4ad751

Please sign in to comment.