Author: msuman
Date: Thu Feb 7 10:34:42 2008
New Revision: 34969
URL: http://svn.gnome.org/viewvc/evolution?rev=34969&view=rev
Log:
Patch from Paul Bolle <[EMAIL PROTECTED]>: Fix for bug #514771 (Fix for a
crash while decoding TNEF attachments)
Modified:
trunk/plugins/tnef-attachments/ChangeLog
trunk/plugins/tnef-attachments/tnef-plugin.c
Modified: trunk/plugins/tnef-attachments/tnef-plugin.c
==============================================================================
--- trunk/plugins/tnef-attachments/tnef-plugin.c (original)
+++ trunk/plugins/tnef-attachments/tnef-plugin.c Thu Feb 7 10:34:42 2008
@@ -1030,7 +1030,7 @@
buf = (variableLength *)g_malloc (sizeof(variableLength));
if ((buf->data = DecompressRTF(filename, &(buf->size))) != NULL) {
fprintf(fptr, "DESCRIPTION:");
- printRtf(fptr, &buf);
+ printRtf(fptr, buf);
free(buf->data);
}
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.