diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-02-20 22:07:55 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-02-20 22:07:55 (GMT) |
commit | ab0253507459c6b163fad1c5039f54bdb3fa3f5c (patch) | |
tree | f049cd04f8cf6f29e83682939562003f9487abb9 /c++/src/H5CommonFG.cpp | |
parent | b362c692dc09558ce93b1d27aa59d4646201ad32 (diff) | |
download | hdf5-ab0253507459c6b163fad1c5039f54bdb3fa3f5c.zip hdf5-ab0253507459c6b163fad1c5039f54bdb3fa3f5c.tar.gz hdf5-ab0253507459c6b163fad1c5039f54bdb3fa3f5c.tar.bz2 |
[svn-r10051] Purpose: Fix bugzilla #242
Description:
In the release branch, RefCounter was still used for maintaining
the reference count and there was a memory leak problem (bug 242)
which is not a simple fix.
Solution:
Removed this reference counting approach completely and started
using the C library's new APIs for that purpose.
Platforms tested:
Linux 2.4 (heping)
SunOS 5.8 64-bit (sol)
Diffstat (limited to 'c++/src/H5CommonFG.cpp')
-rw-r--r-- | c++/src/H5CommonFG.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/c++/src/H5CommonFG.cpp b/c++/src/H5CommonFG.cpp index 6d60c6d..05da7bd 100644 --- a/c++/src/H5CommonFG.cpp +++ b/c++/src/H5CommonFG.cpp @@ -15,7 +15,6 @@ #include <string> #include "H5Include.h" -#include "H5RefCounter.h" #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" |