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

(-)./fofi/FoFiType1.cc.orig (-3 / +8 lines)
Lines 235-243 Link Here
235
	    }
235
	    }
236
	  }
236
	  }
237
	} else {
237
	} else {
238
	  if (strtok(buf, " \t") &&
238
	  p = strtok(buf, " \t\n\r");
239
	      (p = strtok(NULL, " \t\n\r")) && !strcmp(p, "def")) {
239
	  if (p)
240
	    break;
240
	  {
241
	    if (!strcmp(p, "def")) break;
242
	    if (!strcmp(p, "readonly")) break;
243
	    // the spec does not says this but i'm mantaining old xpdf behaviour that accepts "foo def" as end of the encoding array
244
	    p = strtok(buf, " \t\n\r");
245
	    if (p && !strcmp(p, "def")) break;
241
	  }
246
	  }
242
	}
247
	}
243
      }
248
      }
(-)./splash/Splash.cc.orig (+5 lines)
Lines 1501-1506 Link Here
1501
    xPath->aaScale();
1501
    xPath->aaScale();
1502
  }
1502
  }
1503
  xPath->sort();
1503
  xPath->sort();
1504
  if (!&xPath->segs[0])
1505
  {
1506
    delete xPath;
1507
    return splashErrEmptyPath;
1508
  }
1504
  scanner = new SplashXPathScanner(xPath, eo);
1509
  scanner = new SplashXPathScanner(xPath, eo);
1505
1510
1506
  // get the min and max x and y values
1511
  // get the min and max x and y values

Return to bug 1175