| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Windows Kits/10/Source/10.0.19041.0/ucrt/stdio/ |
Upload File : |
//
// _freebuf.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Defines __acrt_stdio_free_buffer(), which releaes a buffer from a stream.
//
#include <corecrt_internal_stdio.h>
// Releases a buffer from a stream. If the stream is buffered and the buffer
// was allocated by the CRT, the space is freed. If the buffer was provided by
// the user, it is not freed (since we do not know how to free it).
extern "C" void __cdecl __acrt_stdio_free_buffer_nolock(FILE* const public_stream)
{
_ASSERTE(public_stream != nullptr);
__crt_stdio_stream const stream(public_stream);
if (!stream.is_in_use())
return;
if (!stream.has_crt_buffer())
return;
_free_crt(stream->_base);
stream.unset_flags(_IOBUFFER_CRT | _IOBUFFER_SETVBUF);
stream->_base = nullptr;
stream->_ptr = nullptr;
stream->_cnt = 0;
}