From 6b1b21e2faceffa5587879806a1c0748c508a8ed Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Sat, 5 Oct 2013 00:15:03 +0200 Subject: [PATCH] Need one more byte for the terminating \0. --- src/xbt/xbt_sha.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xbt/xbt_sha.c b/src/xbt/xbt_sha.c index 34026b15c4..d03cd8932c 100644 --- a/src/xbt/xbt_sha.c +++ b/src/xbt/xbt_sha.c @@ -6,7 +6,7 @@ */ /* Later adapted to fit into SimGrid. Distributed under LGPL v2.1, Feb 1999.*/ -/* Copyright (c) 2008-2012. The SimGrid Team. +/* Copyright (c) 2008-2013. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -99,7 +99,7 @@ static void xbt_sha_finalize(xbt_sha_t sha) /** @brief returns the sha hash into a newly allocated buffer (+ reset sha object) */ char *xbt_sha_read(xbt_sha_t sha) { - char *res = xbt_malloc(40); + char *res = xbt_malloc(41); xbt_sha_print(sha, res); return res; } -- 2.20.1