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

(-)lib/regcomp.c.dist (-1 / +12 lines)
Lines 558-564 Link Here
558
static const bitset_t utf8_sb_map =
558
static const bitset_t utf8_sb_map =
559
{
559
{
560
  /* Set the first 128 bits.  */
560
  /* Set the first 128 bits.  */
561
  [0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX
561
  // [0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX
562
#if BITSET_WORD_MAX == 0xffffffffULL
563
  [0] = BITSET_WORD_MAX,
564
  [1] = BITSET_WORD_MAX,
565
  [2] = BITSET_WORD_MAX,
566
  [3] = BITSET_WORD_MAX
567
#elif BITSET_WORD_MAX == 0xffffffffffffffffULL
568
  [0] = BITSET_WORD_MAX,
569
  [1] = BITSET_WORD_MAX
570
#else
571
# error "Unknown value for BITSET_WORD_MAX"
572
#endif
562
};
573
};
563
#endif
574
#endif
564
575
(-)lib/regexec.c.dist (-1 / +2 lines)
Lines 2894-2900 Link Here
2894
	      sizeof (re_dfastate_t *) * (path->alloc - old_alloc));
2894
	      sizeof (re_dfastate_t *) * (path->alloc - old_alloc));
2895
    }
2895
    }
2896
2896
2897
  str_idx = path->next_idx ?: top_str;
2897
  // str_idx = path->next_idx ?: top_str;
2898
  str_idx = path->next_idx ? path->next_idx : top_str;
2898
2899
2899
  /* Temporary modify MCTX.  */
2900
  /* Temporary modify MCTX.  */
2900
  backup_state_log = mctx->state_log;
2901
  backup_state_log = mctx->state_log;

Return to bug 209135