View | Details | Raw Unified | Return to issue 109841
Collapse All | Expand All

(-)basic.orig/source/classes/sb.cxx (-5 / +5 lines)
Lines 695-709 Link Here
695
	if( !--GetSbData()->nInst )
695
	if( !--GetSbData()->nInst )
696
	{
696
	{
697
		RemoveFactory( pSBFAC );
697
		RemoveFactory( pSBFAC );
698
		pSBFAC = NULL;
698
		delete pSBFAC; pSBFAC = NULL;
699
		RemoveFactory( pUNOFAC );
699
		RemoveFactory( pUNOFAC );
700
		pUNOFAC = NULL;
700
		delete pUNOFAC; pUNOFAC = NULL;
701
		RemoveFactory( pTYPEFAC );
701
		RemoveFactory( pTYPEFAC );
702
		pTYPEFAC = NULL;
702
		delete pTYPEFAC; pTYPEFAC = NULL;
703
		RemoveFactory( pCLASSFAC );
703
		RemoveFactory( pCLASSFAC );
704
		pCLASSFAC = NULL;
704
		delete pCLASSFAC; pCLASSFAC = NULL;
705
		RemoveFactory( pOLEFAC );
705
		RemoveFactory( pOLEFAC );
706
		pOLEFAC = NULL;
706
		delete pOLEFAC; pOLEFAC = NULL;
707
707
708
#ifdef DBG_UTIL
708
#ifdef DBG_UTIL
709
	// There is no need to clean SbiData at program end,
709
	// There is no need to clean SbiData at program end,

Return to issue 109841