enable to parse galaxy format 46/51346/2
authorJeesun Kim <iamjs.kim@samsung.com>
Thu, 10 Sep 2015 10:01:18 +0000 (19:01 +0900)
committerJeesun Kim <iamjs.kim@samsung.com>
Mon, 9 Nov 2015 08:30:55 +0000 (17:30 +0900)
Change-Id: Ib8a333581f5779869ed3f2f569180445e4f8ba61

common/cal_vcalendar_parse.c

index 1993d3c..3bb8d99 100644 (file)
@@ -480,6 +480,8 @@ static void __unfolding(char *p)
                                p += 3;
                        else if (VCAL_CR == *(p +1) && VCAL_LF == *(p +2) && ' ' == *(p +3)) /* ver1.0:in spec case */
                                p += 4;
+                       else if (VCAL_CR == *(p +1) && VCAL_LF == *(p +2)) /* galaxy wants this format */
+                               p += 3;
                        else ;
                        break;