[libpst-commits] r82 - trunk

Chris Halls halls at alioth.debian.org
Thu Jan 11 17:40:18 CET 2007


Author: halls
Date: 2007-01-11 17:40:17 +0100 (Thu, 11 Jan 2007)
New Revision: 82

Modified:
   trunk/ChangeLog
   trunk/lspst.c
Log:
* Fix crash when listing an email without subject
* Reorganise lspst ChangeLog entries to be together under the same subheading


Index: trunk/lspst.c
===================================================================
--- trunk/lspst.c	(revision 81)
+++ trunk/lspst.c	(revision 82)
@@ -227,7 +227,7 @@
 				printf("Email");
 				if (item->email->outlook_sender_name != NULL)
 					printf("\tFrom: %s", item->email->outlook_sender_name);
-				if (item->email->subject->subj != NULL)
+				if (item->email->subject != NULL && item->email->subject->subj != NULL)
 					printf("\tSubject: %s", item->email->subject->subj);
 				printf("\n");
 				// }}}3
Index: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	(revision 81)
+++ trunk/ChangeLog	(revision 82)
@@ -4,11 +4,13 @@
     * Add new fields to appointment for recurring events
 	  (SourceForge #304198)
 	* Map IPM.Task items to PST_TYPE_TASK.
-	* lspst: Add usage mesage and option parsing using getopt
-	  (SourceForge #304199)
-    * lspst: Fix invalid free calls
 	* Applied patch to remove compiler warnings, thanks!
 	  (SourceForge #304314)
+	* lspst fixes: 
+	  * Add usage mesage and option parsing using getopt
+	    (SourceForge #304199)
+      * Fix crash caused by invalid free calls
+	  * Fix crash when email subject is empty
 
 --
 



More information about the libpst-commits mailing list