Skip to content

Commit

Permalink
Initialize allocated memory with zeros
Browse files Browse the repository at this point in the history
  • Loading branch information
clementgallet committed Mar 5, 2018
1 parent 8cda367 commit 57b6be4
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/libTAS/mallocwrappers.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
Copyright 2015-2016 Clément Gallet <clement.gallet@ens-lyon.org>
This file is part of libTAS.
libTAS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
libTAS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with libTAS. If not, see <http://www.gnu.org/licenses/>.
*/

#include "mallocwrappers.h"
#include <cstdlib>

#include "logging.h"
// #include "../dlhook.h"

namespace libtas {

void *malloc (size_t size) throw()
{
return calloc(1, size);
}

}
32 changes: 32 additions & 0 deletions src/libTAS/mallocwrappers.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
Copyright 2015-2016 Clément Gallet <clement.gallet@ens-lyon.org>
This file is part of libTAS.
libTAS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
libTAS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with libTAS. If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef LIBTAS_MALLOC_H_INCL
#define LIBTAS_MALLOC_H_INCL

#include "global.h"

namespace libtas {

/* Allocate SIZE bytes of memory. */
OVERRIDE void *malloc (size_t size) throw();

}

#endif

0 comments on commit 57b6be4

Please sign in to comment.