-
Notifications
You must be signed in to change notification settings - Fork 960
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vsprintf articles update #5230
base: main
Are you sure you want to change the base?
vsprintf articles update #5230
Conversation
Learn Build status updates of commit 38e139c: ✅ Validation status: passedFor more details, please refer to the build report. For any questions, please:
|
@microsoft-github-policy-service agree |
@nikita-leontiev : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
@nikita-leontiev : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
Can you review the proposed changes? Important: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
Thank you for this. I have several things in my queue at the moment but have marked this to come back to as soon as I'm able. |
vswprintf and _vswprintf_l functions return characters count that would be written to buffer when buffer=NULL and count=0. If only count is zero, then memory corruption occurs. "Return value" section updated.
If buffer=NULL and count=0, functions return characters count that would be written to buffer. If buffer is valid and count/sizeInBytes is zero, then memory corruption occurs. "Return value"/"Remarks" sections updated.
Functions return characters count that would be written to buffer when buffer=NULL and count=0. If count is zero, functions return -1. "Behavior summary" section updated.
If buffer is valid, sizeOfBuffer is not zero and count=0, functions return -1. "Behavior summary" section updated.
Functions behavior was checked on Windows 7 SP1 x64 with Microsoft Visual C++ 2008.