aboutsummaryrefslogtreecommitdiff
path: root/vcal.c
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-26 15:12:26 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-26 15:12:26 +0100
commita884e31a8e9464759ac234b3c28f552c05682128 (patch)
treeef0ca30e62e85578b21f04bcf6799c52a7029c83 /vcal.c
parentFix memmory errors. (diff)
downloadcalp-a884e31a8e9464759ac234b3c28f552c05682128.tar.gz
calp-a884e31a8e9464759ac234b3c28f552c05682128.tar.xz
Cleanup.
Diffstat (limited to 'vcal.c')
-rw-r--r--vcal.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/vcal.c b/vcal.c
index 94be9399..42342d93 100644
--- a/vcal.c
+++ b/vcal.c
@@ -59,30 +59,6 @@ INIT_F(vcomponent, const char* type, const char* filename) {
return 0;
}
-#if 0
-content_line* RESOLVE(content_line)
- (content_line* dest, content_line* new_)
-{
- if (dest == NULL) return new_;
-
- /*
- if (strbuf_cmp(&dest->key, &new_->key) != 0) {
- ERR("Can't resolve between these two types");
- return NULL;
- }
- */
-
- /* This destroys new_->val. */
- //APPEND(LLIST(content_set)) (&dest->val, &new_->val);
- APPEND(LLIST(content_set)) (dest, new_);
-
- // FREE(strbuf)(&new_->key);
- free(new_);
-
- return dest;
-}
-#endif
-
content_line* get_property (vcomponent* ev, const char* key) {
size_t len = strlen(key) + 1;
char* cpy = (char*) (calloc(sizeof(*cpy), len));