gnokii-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] libgnokii and core programs branch, master, updated. rel_0_6_28-17


From: Pawel Kot
Subject: [SCM] libgnokii and core programs branch, master, updated. rel_0_6_28-174-g952f06b
Date: Mon, 22 Feb 2010 23:08:54 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libgnokii and core programs".

The branch, master has been updated
       via  952f06ba39bf0de080d1746273015cda10f48aaf (commit)
       via  50d72a53c8f0e745ab466ccfbe8a30eebd91f0a0 (commit)
       via  5842caf259503ac03d862eea5f339024cb74bc63 (commit)
      from  b2019d4bce9aa8a9806c6f6f7b23cb642d8bb6f7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=952f06ba39bf0de080d1746273015cda10f48aaf


commit 952f06ba39bf0de080d1746273015cda10f48aaf
Author: Pawel Kot <address@hidden>
Date:   Tue Feb 23 00:06:39 2010 +0100

    Alexey I. Froloff, Vincent Untz: fix potential buffer overflow when writing 
todo entry.

diff --git a/common/vcal.c b/common/vcal.c
index e81bd53..4ed99b0 100644
--- a/common/vcal.c
+++ b/common/vcal.c
@@ -621,7 +621,7 @@ static int gn_ical2todo_real(icalcomponent *comp, gn_todo 
*ctodo, int id)
 
                /* summary goes into text */
                /* TODO: UTF8 --> ascii */
-               snprintf(ctodo->text, GN_CALNOTE_MAX_LENGTH-1, "%s", 
icalcomponent_get_summary(compresult));
+               snprintf(ctodo->text, GN_TODO_MAX_LENGTH-1, "%s", 
icalcomponent_get_summary(compresult));
 
                /* priority */
                ctodo->priority = icalproperty_get_priority((const icalproperty 
*)priority);

http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=50d72a53c8f0e745ab466ccfbe8a30eebd91f0a0


commit 952f06ba39bf0de080d1746273015cda10f48aaf
Author: Pawel Kot <address@hidden>
Date:   Tue Feb 23 00:06:39 2010 +0100

    Alexey I. Froloff, Vincent Untz: fix potential buffer overflow when writing 
todo entry.

diff --git a/common/vcal.c b/common/vcal.c
index e81bd53..4ed99b0 100644
--- a/common/vcal.c
+++ b/common/vcal.c
@@ -621,7 +621,7 @@ static int gn_ical2todo_real(icalcomponent *comp, gn_todo 
*ctodo, int id)
 
                /* summary goes into text */
                /* TODO: UTF8 --> ascii */
-               snprintf(ctodo->text, GN_CALNOTE_MAX_LENGTH-1, "%s", 
icalcomponent_get_summary(compresult));
+               snprintf(ctodo->text, GN_TODO_MAX_LENGTH-1, "%s", 
icalcomponent_get_summary(compresult));
 
                /* priority */
                ctodo->priority = icalproperty_get_priority((const icalproperty 
*)priority);

http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=5842caf259503ac03d862eea5f339024cb74bc63


commit 952f06ba39bf0de080d1746273015cda10f48aaf
Author: Pawel Kot <address@hidden>
Date:   Tue Feb 23 00:06:39 2010 +0100

    Alexey I. Froloff, Vincent Untz: fix potential buffer overflow when writing 
todo entry.

diff --git a/common/vcal.c b/common/vcal.c
index e81bd53..4ed99b0 100644
--- a/common/vcal.c
+++ b/common/vcal.c
@@ -621,7 +621,7 @@ static int gn_ical2todo_real(icalcomponent *comp, gn_todo 
*ctodo, int id)
 
                /* summary goes into text */
                /* TODO: UTF8 --> ascii */
-               snprintf(ctodo->text, GN_CALNOTE_MAX_LENGTH-1, "%s", 
icalcomponent_get_summary(compresult));
+               snprintf(ctodo->text, GN_TODO_MAX_LENGTH-1, "%s", 
icalcomponent_get_summary(compresult));
 
                /* priority */
                ctodo->priority = icalproperty_get_priority((const icalproperty 
*)priority);

-----------------------------------------------------------------------

Summary of changes:
 common/phones/atsam.c |    4 ++--
 common/vcal.c         |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
libgnokii and core programs




reply via email to

[Prev in Thread] Current Thread [Next in Thread]