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 1499
Collapse All | Expand All

(-)tqt3/src/kernel/qtranslator.cpp.orig (-1 / +1 lines)
Lines 1015-1021 Link Here
1015
	char con[256];
1015
	char con[256];
1016
	for ( ;; ) {
1016
	for ( ;; ) {
1017
	    t >> len;
1017
	    t >> len;
1018
	    if ( len == 0 )
1018
	    if ( len == 0 || t.atEnd() )
1019
		return TQTranslatorMessage();
1019
		return TQTranslatorMessage();
1020
	    t.readRawBytes( con, len );
1020
	    t.readRawBytes( con, len );
1021
	    con[len] = '\0';
1021
	    con[len] = '\0';

Return to bug 1499