VirtualBox

Changeset 95802 in vbox


Ignore:
Timestamp:
Jul 25, 2022 12:27:26 PM (2 years ago)
Author:
vboxsync
Message:

IPRT/nocrt-alloc-win.cpp: Added missing RTMemAllocVarTag and RTMemAllocZVarTag. bugref:10261

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/win/nocrt-alloc-win.cpp

    r93115 r95802  
    8181
    8282
     83#undef RTMemAllocVarTag
     84RTDECL(void *) RTMemAllocVarTag(size_t cbUnaligned, const char *pszTag)
     85{
     86    return RTMemAllocTag(cbUnaligned, pszTag);
     87}
     88
     89
     90#undef RTMemAllocZVarTag
     91RTDECL(void *) RTMemAllocZVarTag(size_t cbUnaligned, const char *pszTag)
     92{
     93    return RTMemAllocZTag(cbUnaligned, pszTag);
     94}
     95
     96
    8397#undef RTMemReallocTag
    8498RTDECL(void *) RTMemReallocTag(void *pvOld, size_t cbNew, const char *pszTag)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette