aboutsummaryrefslogtreecommitdiff
path: root/vcal.c
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-01-21 11:42:12 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-01-21 11:42:12 +0100
commit86f7e40446106f8365df4f52af4ec2ee5dcb37aa (patch)
treeaa97d03d69e0e4ed51a3de7525d4370afac608c1 /vcal.c
parentRename all instances of string to strbuf. (diff)
downloadcalp-86f7e40446106f8365df4f52af4ec2ee5dcb37aa.tar.gz
calp-86f7e40446106f8365df4f52af4ec2ee5dcb37aa.tar.xz
Remove all explicit malloc's.
Diffstat (limited to 'vcal.c')
-rw-r--r--vcal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcal.c b/vcal.c
index 1d1e521a..e1dd3d63 100644
--- a/vcal.c
+++ b/vcal.c
@@ -95,8 +95,8 @@ int push_event(vcalendar* cal, vevent* ev) {
}
int CONSTRUCTOR_DECL(vcalendar) {
- this->events = malloc(sizeof(*this->events));
this->alloc = 1;
+ this->events = calloc(sizeof(*this->events), this->alloc);
this->n_events = 0;
return 0;
}