Mercurial > libpst
diff src/pst2dii.cpp.in @ 143:fdc58ad2c758 stable-0-6-28
fix embedded rfc822 messages with attachments
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 24 Feb 2009 12:33:49 -0800 |
parents | 16770fc77139 |
children | 0695de3b5a98 |
line wrap: on
line diff
--- a/src/pst2dii.cpp.in Mon Feb 23 20:40:51 2009 -0800 +++ b/src/pst2dii.cpp.in Tue Feb 24 12:33:49 2009 -0800 @@ -608,7 +608,7 @@ create_enter_dir(ff, parent, outeritem); while (d_ptr) { if (d_ptr->desc) { - item = pst_parse_item(&pstfile, d_ptr); + item = pst_parse_item(&pstfile, d_ptr, NULL); DEBUG_INFO(("item pointer is %p\n", item)); if (item) { if (item->folder && d_ptr->child ) { @@ -704,7 +704,7 @@ pst_load_extended_attributes(&pstfile); d_ptr = pstfile.d_head; // first record is main record - item = (pst_item*)pst_parse_item(&pstfile, d_ptr); + item = (pst_item*)pst_parse_item(&pstfile, d_ptr, NULL); if (!item || !item->message_store) { DEBUG_RET(); DIE(("main: Could not get root record\n"));