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
log_trace("%s", NULL);
output is (null) but according to standard C library usage states NULL argument behaivour is undefined. So passing NULL to functions like printf() could produce Segmentation Fault.
It would be nice to be able to log NULLs without worries.
The text was updated successfully, but these errors were encountered:
log_trace("%s", NULL);
output is
(null)
but according to standard C library usage states NULL argument behaivour is undefined. So passing NULL to functions like printf() could produce Segmentation Fault.It would be nice to be able to log NULLs without worries.
The text was updated successfully, but these errors were encountered: