aboutsummaryrefslogtreecommitdiffstats
path: root/util/mkdtemp.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2005-07-27 18:10:56 +0000
committerWerner Koch <[email protected]>2005-07-27 18:10:56 +0000
commita1cdf3c75fd5c644607b1877207d1d5b507a5bb9 (patch)
treedb7ed08934f367159a6792990476c0991fa44246 /util/mkdtemp.c
parentRemoved directories which are only used by the 1.9 branch (diff)
downloadgnupg-a1cdf3c75fd5c644607b1877207d1d5b507a5bb9.tar.gz
gnupg-a1cdf3c75fd5c644607b1877207d1d5b507a5bb9.zip
Converted all m_free to xfree etc.
Diffstat (limited to 'util/mkdtemp.c')
-rw-r--r--util/mkdtemp.c2
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;