gnumeric r16316 - in trunk: . plugins/excel



Author: mortenw
Date: Thu Jan 31 03:01:15 2008
New Revision: 16316
URL: http://svn.gnome.org/viewvc/gnumeric?rev=16316&view=rev

Log:
2008-01-30  Morten Welinder  <terra gnome org>

	* ms-excel-read.c (excel_read_EXTERNNAME): Fix the error case.
	Fixes #513005.
	(excel_read_LABEL): Properly check record length.  Fixes #513313.

2008-01-29  Morten Welinder  <terra gnome org>

	* ms-excel-write.c (excel_write_string): Fix length written for
	the unicode case (with length measured in characters).



Modified:
   trunk/NEWS
   trunk/plugins/excel/ChangeLog
   trunk/plugins/excel/ms-excel-read.c
   trunk/plugins/excel/ms-excel-write.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Thu Jan 31 03:01:15 2008
@@ -16,7 +16,8 @@
 	* Fix inter-sheet cut problem.  [#511706]
 	* Fix loading of solver constraints.
 	* Fix solver issue.  [#512500]
-	* Fix corrupted-xls-file problems.  [#512984] [#513005]
+	* Fix corrupted-xls-file problems.  [#512984] [#513005] [513313]
+	* Fix non-ascii export problem.  [#511135]
 
 --------------------------------------------------------------------------
 Gnumeric 1.8.0

Modified: trunk/plugins/excel/ms-excel-read.c
==============================================================================
--- trunk/plugins/excel/ms-excel-read.c	(original)
+++ trunk/plugins/excel/ms-excel-read.c	Thu Jan 31 03:01:15 2008
@@ -5563,18 +5563,21 @@
 excel_read_LABEL (BiffQuery *q, ExcelReadSheet *esheet, gboolean has_markup)
 {
 	GnmValue *v;
-	guint16 const col = XL_GETCOL (q);
-	guint16 const row = XL_GETROW (q);
+	guint16 col, row;
 	guint in_len, str_len;
 	gchar *txt;
 
+	XL_CHECK_CONDITION (q->length >= 8);
 	in_len = q->opcode == BIFF_LABEL_v0 ?
 		GSF_LE_GET_GUINT8 (q->data + 7) : GSF_LE_GET_GUINT16 (q->data + 6);
-	g_return_if_fail (q->length - 8 >= in_len);
+	XL_CHECK_CONDITION (q->length - 8 >= in_len);
 
 	txt = excel_get_text (esheet->container.importer, q->data + 8,
 		in_len, &str_len);
 
+	col = XL_GETCOL (q);
+	row = XL_GETROW (q);
+
 	d (0, fprintf (stderr,"%s in %s%d;\n",
 		       has_markup ? "formatted string" : "string",
 		       col_name (col), row + 1););

Modified: trunk/plugins/excel/ms-excel-write.c
==============================================================================
--- trunk/plugins/excel/ms-excel-write.c	(original)
+++ trunk/plugins/excel/ms-excel-write.c	Thu Jan 31 03:01:15 2008
@@ -322,7 +322,6 @@
 				output_len = g_utf8_pointer_to_offset (txt, in_bytes);
 			else
 				output_len = char_len;
-			output_len++;
 		}
 
 		switch (flags & STR_LENGTH_MASK) {



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