diff options
| author | Martin Stensgård <mastensg@mastensg.net> | 2025-07-03 22:16:40 +0200 |
|---|---|---|
| committer | Martin Stensgård <mastensg@mastensg.net> | 2025-07-03 22:46:09 +0200 |
| commit | 805bd12436e491a2d0c66d21eddd81c3159d4ebe (patch) | |
| tree | fd4ec7ca61e68c44b2cd7a5c831d5da4fc56bbc2 | |
| parent | 8cecef8c855f74f2b1f1b0290c4c015d5ff34fdb (diff) | |
check_ical: don't assert summary
| -rw-r--r-- | check_ical.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/check_ical.c b/check_ical.c index 6cddeb3..c0757f6 100644 --- a/check_ical.c +++ b/check_ical.c @@ -41,8 +41,8 @@ main(void) printf("%02u:%02u ", dts.hour, dts.minute); const char *sum = icalcomponent_get_summary(c); - assert(sum); - printf("%s\n", sum); + if (sum) + printf("%s\n", sum); } icalcomponent_free(comp); |
