EDC7011E
brace_pair imbalance.

Explanation

The re_comp() function detected an error in the input regular expression. The character sequences \{ (left brace) were found without a matching \} (right brace), or vice versa.

System action

The re_comp() function returns with a pointer to this error message. The application continues to run.

Programmer response

Correct the regular expression pattern and retry the re_comp().

Symbolic Feedback Code

EDC6R3