quaker said valgrind 3.5 just accept a byte value (0-255)

SVN revision: 46537
This commit is contained in:
Gustavo Sverzut Barbieri 2010-02-26 23:55:12 +00:00
parent 2466083ecd
commit 7255cc7b32
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ valgrind_append(char **dst, int valgrind_mode, char *valgrind_path, const char *
return 0;
dst[i++] = valgrind_path;
dst[i++] = "--track-origins=yes";
dst[i++] = "--malloc-fill=0xabc79"; /* invalid pointer, make it crash */
dst[i++] = "--malloc-fill=13"; /* invalid pointer, make it crash */
if (valgrind_log)
{