summaryrefslogtreecommitdiffstats
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-28 06:54:12 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-28 06:54:12 +0000
commit727efc61ff79f9a152dc0ec1ff6aae25907a32fb (patch)
tree4919a45cb2e01c50fd77d5632256212512e26a16 /term.c
parente610e710af132c1cfeed06eb0da987c4ab7af35d (diff)
downloadmandoc-727efc61ff79f9a152dc0ec1ff6aae25907a32fb.tar.gz
Removed superfluous memset (thanks Joerg Sonnenberger).
Diffstat (limited to 'term.c')
-rw-r--r--term.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/term.c b/term.c
index 6f929284..3fdb4cc1 100644
--- a/term.c
+++ b/term.c
@@ -77,9 +77,8 @@ term_alloc(enum termenc enc)
{
struct termp *p;
- if (NULL == (p = malloc(sizeof(struct termp))))
+ if (NULL == (p = calloc(1, sizeof(struct termp))))
return(NULL);
- memset(p, 0, sizeof(struct termp));
p->maxrmargin = 78;
p->enc = enc;
return(p);