SHA256
1
0
forked from pool/libical
libical/0005-vcc.y-do-not-ignore-field-separator-in-QUOTED-PRINTA.patch
Dirk Mueller 67ae065e5c Accepting request 1135436 from home:dirkmueller:Factory
- update to 3.0.17:
  * Escape commas in x-property TEXT values
  * Built-in timezones updated to tzdata2023c
  * icalparser_ctrl setting defines how to handle invalid CONTROL
    characters during parsing
  * New publicly available functions:
    + get_zone_directory()
    + icalparser_get_ctrl
    + icalparser_set_ctrl

  * Built-in timezones updated to tzdata2021e
- update to 3.0.10:
  * Fix generating wrong recurrence rules
- filelist fix for the glib build
  * Fix cross-compile support in libical-glib

OBS-URL: https://build.opensuse.org/request/show/1135436
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libical?expand=0&rev=88
2023-12-29 08:54:27 +00:00

50 lines
1.7 KiB
Diff

From 5fbba6b0db3e13bb42a6208c408497469e501a26 Mon Sep 17 00:00:00 2001
From: Jan Engelhardt <jengelh@inai.de>
Date: Mon, 17 Sep 2018 22:05:03 +0200
Subject: [PATCH 5/5] vcc.y - do not ignore field separator in QUOTED-PRINTABLE
mode
References: https://github.com/libical/libical/pull/354
"N;ENCODING=QUOTED-PRINTABLE:=C3=A4=C3=B6;=C3=BC=C3=9F\n"
was parsed as a single field, while in fact, it is two.
References: #353
---
src/libicalvcal/vcc.c | 5 +++--
src/libicalvcal/vcc.y | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
Index: libical-3.0.17/src/libicalvcal/vcc.c
===================================================================
--- libical-3.0.17.orig/src/libicalvcal/vcc.c
+++ libical-3.0.17/src/libicalvcal/vcc.c
@@ -1026,8 +1026,9 @@ static char* lexGetQuotedPrintable(void)
lexAppendc(c | d);
break;
} /* '=' */
- case '\n': {
- lexPushLookaheadc('\n');
+ case '\n':
+ case ';': {
+ lexPushLookaheadc(cur);
goto EndString;
}
case (char)EOF:
Index: libical-3.0.17/src/libicalvcal/vcc.y
===================================================================
--- libical-3.0.17.orig/src/libicalvcal/vcc.y
+++ libical-3.0.17/src/libicalvcal/vcc.y
@@ -990,8 +990,9 @@ static char* lexGetQuotedPrintable()
lexAppendc(c | d);
break;
} /* '=' */
- case '\n': {
- lexPushLookaheadc('\n');
+ case '\n':
+ case ';': {
+ lexPushLookaheadc(cur);
goto EndString;
}
case (char)EOF: