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
When the writer is constructed in io/utils_construct_writer.c, there are checks for NULL. However, writer is of type WRITER**. Thus, the checks should be *writer == NULL, correct?
The text was updated successfully, but these errors were encountered:
When the writer is constructed in
io/utils_construct_writer.c
, there are checks forNULL
. However,writer
is of typeWRITER**
. Thus, the checks should be*writer == NULL
, correct?The text was updated successfully, but these errors were encountered: