Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 143753
Collapse All | Expand All

(-)prelink.orig/src/cache.c (+2 lines)
Lines 336-341 Link Here
336
  struct prelink_entry *a = * (struct prelink_entry **) A;
336
  struct prelink_entry *a = * (struct prelink_entry **) A;
337
  struct prelink_entry *b = * (struct prelink_entry **) B;
337
  struct prelink_entry *b = * (struct prelink_entry **) B;
338
338
339
  if (a == NULL && b == NULL)
340
    return 0; /* fixes http://bugs.gentoo.org/143753 */
339
  if (a == NULL && b != NULL)
341
  if (a == NULL && b != NULL)
340
    return 1;
342
    return 1;
341
  if (a != NULL && b == NULL)
343
  if (a != NULL && b == NULL)

Return to bug 143753