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 you call this interface to add a single character to a character string, you need to check whether lenBuf is sufficient. However, lenStr cannot be greater than lenBuf.
Change if((*ps)->lenStr >= (*ps)->lenBuf) to if((*ps)->lenStr == (*ps)->lenBuf) for better understanding
The text was updated successfully, but these errors were encountered:
When you call this interface to add a single character to a character string, you need to check whether lenBuf is sufficient. However, lenStr cannot be greater than lenBuf.
Change if((*ps)->lenStr >= (*ps)->lenBuf) to if((*ps)->lenStr == (*ps)->lenBuf) for better understanding
The text was updated successfully, but these errors were encountered: