diff options
author | Gilbert Fang <gilbert.fang@sun.com> | 2003-08-20 16:58:13 +0800 |
---|---|---|
committer | Gilbert Fang <gilbertfang@src.gnome.org> | 2003-08-20 16:58:13 +0800 |
commit | 6f64df2e61a0e8addc9523e19508b6ce74a41c68 (patch) | |
tree | e282d755604c43a33b2ea528e579ecb0dc185512 /addressbook | |
parent | d5b0f9dc9daa9a31706cfa874e79f85272fb83f5 (diff) | |
download | gsoc2013-evolution-6f64df2e61a0e8addc9523e19508b6ce74a41c68.tar.gz gsoc2013-evolution-6f64df2e61a0e8addc9523e19508b6ce74a41c68.tar.zst gsoc2013-evolution-6f64df2e61a0e8addc9523e19508b6ce74a41c68.zip |
use memcpy to assign CORBA_char_sequence instead of strcpy. (#46706)
2003-08-20 Gilbert Fang <gilbert.fang@sun.com>
* gui/widgets/e-addressbook-util.c
(e_addressbook_send_card_list): use memcpy to assign
CORBA_char_sequence instead of strcpy. (#46706)
svn path=/trunk/; revision=22305
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-util.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 24a87ee8d6..4348e1dadd 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2003-08-20 Gilbert Fang <gilbert.fang@sun.com> + + * gui/widgets/e-addressbook-util.c + (e_addressbook_send_card_list): use memcpy to assign + CORBA_char_sequence instead of strcpy. (#46706) + 2003-08-12 Rodrigo Moya <rodrigo@ximian.com> * backend/ebook/e-book.c (e_book_dispose): unref the diff --git a/addressbook/gui/widgets/e-addressbook-util.c b/addressbook/gui/widgets/e-addressbook-util.c index 31f6169112..1ddb6812a2 100644 --- a/addressbook/gui/widgets/e-addressbook-util.c +++ b/addressbook/gui/widgets/e-addressbook-util.c @@ -535,7 +535,7 @@ e_addressbook_send_card_list (GList *cards, EAddressbookDisposition disposition) attach_data = GNOME_Evolution_Composer_AttachmentData__alloc(); attach_data->_maximum = attach_data->_length = strlen (tempstr); attach_data->_buffer = CORBA_sequence_CORBA_char_allocbuf (attach_data->_length); - strcpy (attach_data->_buffer, tempstr); + memcpy(attach_data->_buffer, tempstr, attach_data->_length); g_free (tempstr); GNOME_Evolution_Composer_attachData (composer_server, |