* Fix 12124 [DOGFOOD] Reading user's preferences

* Implement site-specific security policies (bug 858)
r=mstoltz
* Use Recycle rather than delete[] to clean up Purify logs
r=law
This commit is contained in:
norris@netscape.com
1999-11-16 05:07:31 +00:00
parent 84ec2b2a5b
commit 6e920731f8
20 changed files with 279 additions and 200 deletions

View File

@@ -433,7 +433,7 @@ nsAppShellService::InitializeComponent( const nsCID &aComponentCID ) {
char *name = aComponentCID.ToString();
printf( "Initialized app shell component %s, rv=0x%08X\n",
name, (int)rv );
delete [] name;
Recycle(name);
#endif
// Release it (will live on if it registered itself as service).
component->Release();
@@ -443,7 +443,7 @@ nsAppShellService::InitializeComponent( const nsCID &aComponentCID ) {
char *name = aComponentCID.ToString();
printf( "Error creating app shell component %s, rv=0x%08X\n",
name, (int)rv );
delete [] name;
Recycle(name);
#endif
}