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
call this function: sprintf_s(buff, sizeof(buff), "%s", "");
it gives error. because the call to "vsnprintf" returns 0. which is correct because it's printing empty string.
The _s extension defines what to do with an empty string and NULL, which I'm going to implement properly in the printf branch.
There were too many edge-cases not handled correctly.
call this function: sprintf_s(buff, sizeof(buff), "%s", "");
it gives error. because the call to "vsnprintf" returns 0. which is correct because it's printing empty string.
The text was updated successfully, but these errors were encountered: