diff options
author | Werner Koch <[email protected]> | 2005-07-27 18:10:56 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2005-07-27 18:10:56 +0000 |
commit | a1cdf3c75fd5c644607b1877207d1d5b507a5bb9 (patch) | |
tree | db7ed08934f367159a6792990476c0991fa44246 /util/mkdtemp.c | |
parent | Removed directories which are only used by the 1.9 branch (diff) | |
download | gnupg-a1cdf3c75fd5c644607b1877207d1d5b507a5bb9.tar.gz gnupg-a1cdf3c75fd5c644607b1877207d1d5b507a5bb9.zip |
Converted all m_free to xfree etc.
Diffstat (limited to 'util/mkdtemp.c')
-rw-r--r-- | util/mkdtemp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mkdtemp.c b/util/mkdtemp.c index c8b67db5a..25ace4fc5 100644 --- a/util/mkdtemp.c +++ b/util/mkdtemp.c @@ -86,7 +86,7 @@ char *mkdtemp(char *template) if(remaining>0) sprintf(marker,"%X",randombits[idx]&0xF); - m_free(randombits); + xfree(randombits); if(mkdir(template,0700)==0) break; |