You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [init] Initialize stream mode to in by default
* [leak] Fix memory leak of server api ptr
Should call delete on pointer instead of releasing it to the caller.
* [macro] Ensure priority of macro computation
Enclose macro args in round brackets to ensure operators priority.
* [prep] Fix comment after preprocessor macro
* [ub] Use typed pointer in delete operation
* Delete of void pointer is UB. See section 5.3.5/3. SO question:
https://stackoverflow.com/questions/941832/is-it-safe-to-delete-a-void-pointer
* Windows APIs used here return FALSE in case of failure, and
non-FALSE on success. There is no info in spec that only TRUE
value indicates success. Correct way to implement check for
success call is to compare with false like result != FALSE.
* [fmt] Fix military RFC1123 time format parsing
Ensure + or - sign is used for time zone offset in RFC1123 military
time format.
* Remove redundant != FALSE.
Co-authored-by: Billy Robert O'Neal III <[email protected]>
0 commit comments