diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-29 21:39:52 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-29 21:39:52 +0000 |
commit | 8ea55cb37084afa9f77958c1f7ccf595920a71f9 (patch) | |
tree | e6afa1ab83da4328c72ac0e5ff8f6ad495019c93 /etc | |
parent | 613b267876e18aa58b6328ba29018822df403531 (diff) | |
download | ATCD-8ea55cb37084afa9f77958c1f7ccf595920a71f9.tar.gz |
*** empty log message ***
Diffstat (limited to 'etc')
-rw-r--r-- | etc/ACE-guidelines.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/ACE-guidelines.html b/etc/ACE-guidelines.html index 63470821de8..0f616c1aff2 100644 --- a/etc/ACE-guidelines.html +++ b/etc/ACE-guidelines.html @@ -226,7 +226,8 @@ bgcolor="#ffffff"> <li>Don't check for a pointer being 0 before deleting it. It's always safe to delete a 0 pointer. If the pointer is visible outside the local scope, it's often a good idea to 0 it - _after_ deleting it.<p> + _after_ deleting it. Note, the same argument applies to + free().<p> <li>Always use <strong><code>ACE_NEW</code></strong> or <strong><code>ACE_NEW_RETURN</code></strong> to allocate memory, |