Browse code

Fix typo

git-svn: trunk@2547

Nigel Horne authored on 2006/12/09 17:36:51
Showing 2 changed files
... ...
@@ -1,3 +1,7 @@
1
+Sat Dec  9 08:36:20 GMT 2006 (njh)
2
+----------------------------------
3
+  * libclamav/pst.c:		Fix typo in the recent patches
4
+
1 5
 Fri Dec  8 10:28:25 GMT 2006 (njh)
2 6
 ----------------------------------
3 7
   * libclamav/pst.c:		Another upstream patch
... ...
@@ -36,7 +36,7 @@
36 36
  * TODO: Remove the vcard handling
37 37
  * FIXME: The code does little error checking of OOM scenarios
38 38
  */
39
-static	char	const	rcsid[] = "$Id: pst.c,v 1.39 2006/12/08 10:28:07 njh Exp $";
39
+static	char	const	rcsid[] = "$Id: pst.c,v 1.40 2006/12/09 08:36:01 njh Exp $";
40 40
 
41 41
 #if HAVE_CONFIG_H
42 42
 #include "clamav-config.h"	/* must come first */
... ...
@@ -1657,14 +1657,14 @@ _pst_parse_item(pst_file *pf, pst_desc_ll *d_ptr)
1657 1657
 	  cli_dbgmsg("ERROR _pst_process() failed with an attachment\n");
1658 1658
 	  _pst_free_list(list);
1659 1659
 	  if(list) {
1660
-		  pst_free_list(list);
1660
+		  _pst_free_list(list);
1661 1661
 		  list = NULL;
1662 1662
 	  }
1663 1663
 	  attach = attach->next;
1664 1664
 	  continue;
1665 1665
 	}
1666 1666
 	  if(list) {
1667
-		  pst_free_list(list);
1667
+		  _pst_free_list(list);
1668 1668
 		  list = NULL;
1669 1669
 	  }
1670 1670
 	if ((id_ptr = _pst_getID2(id2_head, attach->id2_val)) != NULL) {