summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Exceptions.cc28
-rw-r--r--lib/Image.cc2
-rw-r--r--lib/TaskMan.cc2
3 files changed, 4 insertions, 28 deletions
diff --git a/lib/Exceptions.cc b/lib/Exceptions.cc
index 0d09870..caa0257 100644
--- a/lib/Exceptions.cc
+++ b/lib/Exceptions.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Exceptions.cc,v 1.30 2003-12-04 04:09:02 pixel Exp $ */
+/* $Id: Exceptions.cc,v 1.31 2003-12-22 01:57:02 pixel Exp $ */
#include <malloc.h>
#include <string.h>
@@ -142,18 +142,6 @@ void * xrealloc(void * ptr, size_t s) {
}
void xfree(unsigned char *& p) {
- char * t = (char *) p;
- xfree(t);
- p = 0;
-}
-
-void xfree(void *& p) {
- char * t = (char *) p;
- xfree(t);
- p = 0;
-}
-
-void xfree(char *& p) {
#ifdef DEBUG
// Base::printm(M_BARE, String(_("Freeing pointer at %p\n")), p);
#endif
@@ -237,19 +225,7 @@ void Base::operator delete(void * p) {
#ifdef DEBUG
printm(M_BARE, _("Operator delete(p) called. Freeing memory.\n"));
#endif
- xfree(p);
-}
-
-void Base::free(void *& p) {
- xfree(p);
-}
-
-void Base::free(char *& p) {
- xfree(p);
-}
-
-void Base::free(unsigned char *& p) {
- xfree(p);
+ free(p);
}
int Base::pipe(int * p, int flag) {
diff --git a/lib/Image.cc b/lib/Image.cc
index 6b698ae..d098de3 100644
--- a/lib/Image.cc
+++ b/lib/Image.cc
@@ -9,7 +9,7 @@ Image::Image(unsigned int ax, unsigned int ay) : x(ax), y(ay), img((Color *) mal
}
Image::~Image() {
- free((char *&) img);
+ free(img);
}
bool Image::CanWrite() const {
diff --git a/lib/TaskMan.cc b/lib/TaskMan.cc
index c1c60ae..cc24c80 100644
--- a/lib/TaskMan.cc
+++ b/lib/TaskMan.cc
@@ -387,7 +387,7 @@ void TaskMan::MainLoop() throw (GeneralException) {
}
}
}
- free((void *) ufsd);
+ free(ufsd);
}
/* And finally, let's clean-up all the zombies around here. */