Roth,
Hope they can be in-corporated into your code soon.
Regards.
Yimin Zheng
1.CSD::~CSD() in Secure\CSD.Cpp
looks like a typo. m_pTempSacl gets cleared twice, but m_pTempDacl's never cleared.
old:
DELETE_VECTOR( m_pTempSacl );
DELETE_VECTOR( m_pTempSacl );
fix:
DELETE_VECTOR( m_pTempDacl );
DELETE_VECTOR( m_pTempSacl );
2.CSD::Destroy() in Secure\CSD.Cpp
same as no.1
old:
DELETE_VECTOR( m_pTempSacl );
DELETE_VECTOR( m_pTempSacl );
fix:
DELETE_VECTOR( m_pTempDacl );
DELETE_VECTOR( m_pTempSacl );
3.void CList< T >::Empty() in Secure\CList.hpp
old:
do
{
m_pList[ dwCount ] = NULL;
}
fix:
do
{
delete m_pList[ dwCount ];
m_pList[ dwCount ] = NULL;
}
4.XS_WIN32__Perms_Dump in Perms\Perms.cpp
Looks like SvREFCNT_dec() has to be called on each pHV "newHV"ed, after it's used but before it's set to NULL.
Not sure if this is specific to my perl installation.
5.XS_WIN32__Perms_Get in Perms\Perms.cpp
The same problem as no.4
PS.
my output from perl -v
------------------------------------------------------------------------------------
This is perl, v5.6.1 built for MSWin32-x86-multi-thread
(with 1 registered patch, see perl -V for more detail)
Copyright 1987-2001, Larry Wall
Binary build 635 provided by ActiveState Corp. http://www.ActiveState.com
Built 15:34:21 Feb 4 2003
----- This message is for the named person's use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or lost by any mistransmission. If you receive this message in error, please delete it and all copies from your system, destroy any hard copies and notify the sender. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. Nomura Holding America Inc., Nomura Securities International, Inc, and their respective subsidiaries each reserve the right to monitor all e-mail communications through its networks. Any views expressed in this message are those of the individual sender, except where the message states otherwise and the sender is authorized to state the views of such entity. Unless otherwise stated, any pricing information in this message is indicative only, is subject to change and does not constitute an offer to deal at any price quoted. Any reference to the terms of executed transactions should be treated as preliminary only and subject to our formal written confirmation.
