OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/evolution-data-server?expand=0&rev=26
This commit is contained in:
parent
9dec3871a9
commit
935a732d09
18
bgo-522389-e-gw-connection-get-attachment-corruption.patch
Normal file
18
bgo-522389-e-gw-connection-get-attachment-corruption.patch
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
Fixes crash on some attachments in GroupWise on x86_64 caused by stack corruption.
|
||||||
|
http://bugzilla.gnome.org/show_bug.cgi?id=522389
|
||||||
|
|
||||||
|
e-gw-connection.c: In function 'e_gw_connection_get_attachment':
|
||||||
|
e-gw-connection.c:2649: warning: passing argument 2 of 'g_base64_decode' from incompatible pointer type
|
||||||
|
|
||||||
|
================================================================================
|
||||||
|
--- servers/groupwise/e-gw-connection.c
|
||||||
|
+++ servers/groupwise/e-gw-connection.c
|
||||||
|
@@ -2645,7 +2645,7 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
if (buffer && buf_length) {
|
||||||
|
- int len = atoi (buf_length) ;
|
||||||
|
+ gsize len = atoi (buf_length) ;
|
||||||
|
*attachment = g_base64_decode (buffer,&len) ;
|
||||||
|
*attach_length = len ;
|
||||||
|
}
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 26 12:11:16 CET 2008 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
- Fixed GroupWise attachment crash on x86_64 (bgo#522389).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 14 04:28:30 CET 2008 - maw@suse.de
|
Fri Mar 14 04:28:30 CET 2008 - maw@suse.de
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ Group: Development/Libraries/GNOME
|
|||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: Evolution Data Server
|
Summary: Evolution Data Server
|
||||||
Version: 2.22.0
|
Version: 2.22.0
|
||||||
Release: 1
|
Release: 6
|
||||||
Source0: ftp://ftp.gnome.org/pub/gnome/sources/evolution-data-server/2.21/%{name}-%{version}.tar.bz2
|
Source0: ftp://ftp.gnome.org/pub/gnome/sources/evolution-data-server/2.21/%{name}-%{version}.tar.bz2
|
||||||
Patch0: evolution-data-server-configure.patch
|
Patch0: evolution-data-server-configure.patch
|
||||||
# PATCH-FIX-UPSTREAM bnc-164367-gw-attachments-appts-throw-error.patch bnc164367 - Fix is in upstream svn.
|
# PATCH-FIX-UPSTREAM bnc-164367-gw-attachments-appts-throw-error.patch bnc164367 - Fix is in upstream svn.
|
||||||
@ -37,6 +37,8 @@ Patch12: bnc-304835-ex-crash-after-restart.patch
|
|||||||
# PATCH-FIX-UPSTREAM: bnc-307861-calendar-auth.diff - bnc307861 bgo253574 - Fix has been submitted to bgo.
|
# PATCH-FIX-UPSTREAM: bnc-307861-calendar-auth.diff - bnc307861 bgo253574 - Fix has been submitted to bgo.
|
||||||
Patch13: bnc-307861-calendar-auth.diff
|
Patch13: bnc-307861-calendar-auth.diff
|
||||||
Patch14: evolution-data-server-abuild.patch
|
Patch14: evolution-data-server-abuild.patch
|
||||||
|
# PATCH-FIX-UPSTREAM: bgo-522389-e-gw-connection-get-attachment-corruption.patch bgo522389 - Fix gw attachment crash on x86_64
|
||||||
|
Patch15: bgo-522389-e-gw-connection-get-attachment-corruption.patch
|
||||||
# Change patch below if we move away from /opt/gnome
|
# Change patch below if we move away from /opt/gnome
|
||||||
# PATCH-FIX-OPENSUSE libgnomeui-dep.patch - It avoids a build dependency on libgnomeui to speed up bootstrap
|
# PATCH-FIX-OPENSUSE libgnomeui-dep.patch - It avoids a build dependency on libgnomeui to speed up bootstrap
|
||||||
Patch99: libgnomeui-dep.patch
|
Patch99: libgnomeui-dep.patch
|
||||||
@ -44,7 +46,7 @@ Patch99: libgnomeui-dep.patch
|
|||||||
# fixed in the next release:
|
# fixed in the next release:
|
||||||
# I: Program is using uninitialized variables.
|
# I: Program is using uninitialized variables.
|
||||||
# Note the difference between "is used" and "may be used"
|
# Note the difference between "is used" and "may be used"
|
||||||
# W: evolution-data-server uninitialized-variable e-book-backend-groupwise.c: 2425
|
# W: evolution-data-server uninitialized-variable e-book-backend-groupwise.c: 2425
|
||||||
# See:
|
# See:
|
||||||
# http://bugzilla.gnome.org/show_bug.cgi?id=504346
|
# http://bugzilla.gnome.org/show_bug.cgi?id=504346
|
||||||
Url: http://www.gnome.org
|
Url: http://www.gnome.org
|
||||||
@ -93,7 +95,7 @@ documentation.
|
|||||||
|
|
||||||
%lang_package
|
%lang_package
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0
|
%patch0
|
||||||
%patch3
|
%patch3
|
||||||
#%patch4
|
#%patch4
|
||||||
@ -104,6 +106,7 @@ documentation.
|
|||||||
###%patch12
|
###%patch12
|
||||||
%patch13
|
%patch13
|
||||||
%patch14 -p1
|
%patch14 -p1
|
||||||
|
%patch15
|
||||||
%patch99
|
%patch99
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -113,7 +116,7 @@ aclocal
|
|||||||
autoconf
|
autoconf
|
||||||
automake
|
automake
|
||||||
autoheader
|
autoheader
|
||||||
# needed for evolution-data-server-1.8.2:
|
# needed for evolution-data-server-2.22.0:
|
||||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||||
%configure\
|
%configure\
|
||||||
--libexecdir=%{_prefix}/lib/evolution-data-server\
|
--libexecdir=%{_prefix}/lib/evolution-data-server\
|
||||||
@ -162,6 +165,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/gtk-doc/html/*
|
%{_datadir}/gtk-doc/html/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 26 2008 sbrabec@suse.cz
|
||||||
|
- Fixed GroupWise attachment crash on x86_64 (bgo#522389).
|
||||||
* Fri Mar 14 2008 maw@suse.de
|
* Fri Mar 14 2008 maw@suse.de
|
||||||
- Update to versoin 2.22.0:
|
- Update to versoin 2.22.0:
|
||||||
+ Bugs fixed: bgo#327851, bgo#518728, and bgo#520362
|
+ Bugs fixed: bgo#327851, bgo#518728, and bgo#520362
|
||||||
|
Loading…
Reference in New Issue
Block a user