By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 307
Collapse All | Expand All

(-)ktnef/lib/ktnefparser.cpp (-1 / +14 lines)
Lines 715-721 Link Here
715
			}
715
			}
716
			break;
716
			break;
717
		   case MAPI_TYPE_USTRING:
717
		   case MAPI_TYPE_USTRING:
718
			mapi.type = MAPI_TYPE_NONE;
718
			// in case of a vector'ed value, the number of elements
719
			// has already been read in the upper for-loop
720
			if ( ISVECTOR( mapi ) )
721
				d = 1;
722
			else
723
				stream >> d;
724
			for (uint i=0;i<d;i++)
725
			{
726
				value.clear();
727
				value.asString() = readMAPIString( stream, true );
728
			}
719
			break;
729
			break;
720
		   case MAPI_TYPE_OBJECT:
730
		   case MAPI_TYPE_OBJECT:
721
		   case MAPI_TYPE_BINARY:
731
		   case MAPI_TYPE_BINARY:
Lines 741-746 Link Here
741
			}
751
			}
742
			break;
752
			break;
743
		   default:
753
		   default:
754
			kdDebug().form( "unsupported type=%x\n", mapi.type );
744
			mapi.type = MAPI_TYPE_NONE;
755
			mapi.type = MAPI_TYPE_NONE;
745
			break;
756
			break;
746
		}
757
		}
Lines 844-849 Link Here
844
						kdDebug().form( "(tag=%04x) MAPI time%s: %s\n", mapi.tag, mapiname.ascii(), mapi.value.toString().ascii() );
855
						kdDebug().form( "(tag=%04x) MAPI time%s: %s\n", mapi.tag, mapiname.ascii(), mapi.value.toString().ascii() );
845
						break;
856
						break;
846
					case MAPI_TYPE_USTRING:
857
					case MAPI_TYPE_USTRING:
858
						kdDebug().form( "(tag=%04x) MAPI unicode string%s: size=%d \"%s\"\n", mapi.tag, mapiname.ascii(), mapi.value.toByteArray().size(), mapi.value.toString().ascii() );
859
						break;
847
					case MAPI_TYPE_STRING8:
860
					case MAPI_TYPE_STRING8:
848
						kdDebug().form( "(tag=%04x) MAPI string%s: size=%d \"%s\"\n", mapi.tag, mapiname.ascii(), mapi.value.toByteArray().size(), mapi.value.toString().ascii() );
861
						kdDebug().form( "(tag=%04x) MAPI string%s: size=%d \"%s\"\n", mapi.tag, mapiname.ascii(), mapi.value.toByteArray().size(), mapi.value.toString().ascii() );
849
						break;
862
						break;

Return to bug 307