security: fix denial-of-service bug in compiler ยท rust-lang/regex@ae70b41

The regex compiler will happily attempt to compile '(?:){294967295}' by compiling the empty sub-expression 294,967,295 times. Empty sub-expressions don't use any memory in the current i...