libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit 3c85155f416975e7e5340248ad10626602f1b855
parent dc9bc027835b2b91adaf6372e9c699f5b3075bae
Author: Nils Durner <durner@gnunet.org>
Date:   Wed, 13 Dec 2006 19:40:06 +0000

fix

Diffstat:
Msrc/main/extractor.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/extractor.c b/src/main/extractor.c @@ -359,7 +359,7 @@ static char * get_path_from_module_filename() { char * path; char * idx; - path = MALLOC(4097); + path = malloc(4097); GetModuleFileName(NULL, path, 4096); idx = path + strlen(idx); while ( (idx > path) &&