Hello community, here is the log from the commit of package FileZilla checked in at Thu May 17 11:32:56 CEST 2007. -------- --- FileZilla/FileZilla.changes 2007-05-04 15:37:57.000000000 +0200 +++ /mounts/work_src_done/STABLE/FileZilla/FileZilla.changes 2007-05-16 12:42:38.000000000 +0200 @@ -1,0 +2,5 @@ +Wed May 16 12:41:39 CEST 2007 - pth@suse.de + +- Fix comparison of pointer with string. + +------------------------------------------------------------------- New: ---- FileZilla-pointer_string_cmp.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ FileZilla.spec ++++++ --- /var/tmp/diff_new_pack.X13340/_old 2007-05-17 11:31:57.000000000 +0200 +++ /var/tmp/diff_new_pack.X13340/_new 2007-05-17 11:31:57.000000000 +0200 @@ -15,12 +15,13 @@ BuildRequires: cppunit gnutls-devel libidn-devel update-desktop-files wxGTK-devel Summary: A GUI FTP and SFTP client Version: 3.0.0.beta6 -Release: 1 +Release: 9 License: GNU General Public License (GPL) URL: ttp://www.filezilla.de Group: Productivity/Networking/Ftp/Clients Source: %{name}_3.0.0-beta6_src.tar.bz2 Patch0: FileZilla-autotools.patch +Patch1: FileZilla-pointer_string_cmp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -62,6 +63,7 @@ %prep %setup -q -n filezilla-3.0.0-beta6 %patch0 +%patch1 %build autoreconf -f -i @@ -86,5 +88,7 @@ %{_datadir}/filezilla %changelog +* Wed May 16 2007 - pth@suse.de +- Fix comparison of pointer with string. * Fri May 04 2007 - pth@suse.de - Initial package ++++++ FileZilla-pointer_string_cmp.patch ++++++ --- src/interface/wrapengine.cpp +++ src/interface/wrapengine.cpp @@ -665,7 +665,7 @@ int CWrapEngine::GetWidthFromCache(const char* name) { - if (!name || name == "") + if (!name || *name == '\0') return 0; // We have to synchronize access to layout.xml so that multiple processed don't write @@ -710,7 +710,7 @@ void CWrapEngine::SetWidthToCache(const char* name, int width) { - if (!name || name == "") + if (!name || *name == '\0') return; // We have to synchronize access to layout.xml so that multiple processed don't write ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de