diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-28 06:54:12 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-28 06:54:12 +0000 |
commit | 727efc61ff79f9a152dc0ec1ff6aae25907a32fb (patch) | |
tree | 4919a45cb2e01c50fd77d5632256212512e26a16 /term.c | |
parent | e610e710af132c1cfeed06eb0da987c4ab7af35d (diff) | |
download | mandoc-727efc61ff79f9a152dc0ec1ff6aae25907a32fb.tar.gz |
Removed superfluous memset (thanks Joerg Sonnenberger).
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |