Actions
Feature #103
closedReplace convert_string() asserts with nonnull attributes
Start date:
01/01/2024
Due date:
% Done:
0%
Estimated time:
Description
convert_string() currently has asserts to check number of parameters not being NULL. Replace that with use of nonnull attribute.
1) Compile time check instead of runtime
2) Static analyzers know that function should not be passed NULL parameters, so can better check calling side
3) Fixes compiler warnings related to the early exit code with asserts
Files
Actions