[Pkg-mono-svn-commits] rev 3375 - in beagle/trunk/debian: . patches

Mirco Bauer meebey-guest at alioth.debian.org
Sat Sep 22 12:46:19 UTC 2007


Author: meebey-guest
Date: 2007-09-22 12:46:19 +0000 (Sat, 22 Sep 2007)
New Revision: 3375

Modified:
   beagle/trunk/debian/changelog
   beagle/trunk/debian/patches/fix_GMime.StreamFs.Seek_usage.dpatch
Log:
- patch update, doesn't fix the crash, but still makes it better



Modified: beagle/trunk/debian/changelog
===================================================================
--- beagle/trunk/debian/changelog	2007-09-22 10:07:18 UTC (rev 3374)
+++ beagle/trunk/debian/changelog	2007-09-22 12:46:19 UTC (rev 3375)
@@ -16,7 +16,7 @@
 
   [ Mirco Bauer ]
   * debian/patches/fix_GMime.StreamFs.Seek_usage.dpatch:
-    + Don't try to seek 0 bytes, which triggers an assert in GMime. (Closes: #442173)
+    + Pass Int64 value as is, no need to cast it to Int32 first.
   * debian/patches/enhanced_logging_support.dpatch:
     + Logger uses warning now as log level instead of debug. (Closes: #363703)
       (Debug level still can be activated using beagled --debug)

Modified: beagle/trunk/debian/patches/fix_GMime.StreamFs.Seek_usage.dpatch
===================================================================
--- beagle/trunk/debian/patches/fix_GMime.StreamFs.Seek_usage.dpatch	2007-09-22 10:07:18 UTC (rev 3374)
+++ beagle/trunk/debian/patches/fix_GMime.StreamFs.Seek_usage.dpatch	2007-09-22 12:46:19 UTC (rev 3375)
@@ -6,16 +6,14 @@
 
 @DPATCH@
 diff -urNad beagle-0.2.18~/beagled/EvolutionMailQueryable/EvolutionMailIndexableGenerator.cs beagle-0.2.18/beagled/EvolutionMailQueryable/EvolutionMailIndexableGenerator.cs
---- beagle-0.2.18~/beagled/EvolutionMailQueryable/EvolutionMailIndexableGenerator.cs	2007-09-21 19:05:01.000000000 +0200
-+++ beagle-0.2.18/beagled/EvolutionMailQueryable/EvolutionMailIndexableGenerator.cs	2007-09-21 19:07:56.000000000 +0200
-@@ -225,7 +225,9 @@
+--- beagle-0.2.18~/beagled/EvolutionMailQueryable/EvolutionMailIndexableGenerator.cs	2007-09-22 14:44:23.000000000 +0200
++++ beagle-0.2.18/beagled/EvolutionMailQueryable/EvolutionMailIndexableGenerator.cs	2007-09-22 14:44:40.000000000 +0200
+@@ -225,7 +225,7 @@
  				}
  
  				this.mbox_stream = new GMime.StreamFs (this.mbox_fd);
 -				this.mbox_stream.Seek ((int) this.MboxLastOffset);
-+				if (this.MboxLastOffset > 0) {
-+					this.mbox_stream.Seek ((int) this.MboxLastOffset);
-+				}
++				this.mbox_stream.Seek (this.MboxLastOffset);
  				this.mbox_parser = new GMime.Parser (this.mbox_stream);
  				this.mbox_parser.ScanFrom = true;
  




More information about the Pkg-mono-svn-commits mailing list