diff options
| author | Paul Eggert | 2025-06-27 22:32:33 -0700 |
|---|---|---|
| committer | Paul Eggert | 2025-06-27 23:06:40 -0700 |
| commit | dbdf761187d7cccfad20a2899bab3dc77f379c3a (patch) | |
| tree | d4e160b187f6f56e27dad185dfdd4cb955c4ec80 /lib/regexec.c | |
| parent | 68100ca656ad76e937622a1a74b6ca185bc82e07 (diff) | |
| download | emacs-dbdf761187d7cccfad20a2899bab3dc77f379c3a.tar.gz emacs-dbdf761187d7cccfad20a2899bab3dc77f379c3a.zip | |
Update from Gnulib by running admin/merge-gnulib
Diffstat (limited to 'lib/regexec.c')
| -rw-r--r-- | lib/regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regexec.c b/lib/regexec.c index c5ab9b6649f..0d14ac35fe9 100644 --- a/lib/regexec.c +++ b/lib/regexec.c | |||
| @@ -2271,7 +2271,7 @@ merge_state_with_log (reg_errcode_t *err, re_match_context_t *mctx, | |||
| 2271 | these destinations and the results of the transition table. */ | 2271 | these destinations and the results of the transition table. */ |
| 2272 | pstate = mctx->state_log[cur_idx]; | 2272 | pstate = mctx->state_log[cur_idx]; |
| 2273 | log_nodes = pstate->entrance_nodes; | 2273 | log_nodes = pstate->entrance_nodes; |
| 2274 | if (next_state != NULL) | 2274 | if (next_state != NULL && next_state->entrance_nodes != NULL) |
| 2275 | { | 2275 | { |
| 2276 | table_nodes = next_state->entrance_nodes; | 2276 | table_nodes = next_state->entrance_nodes; |
| 2277 | *err = re_node_set_init_union (&next_nodes, table_nodes, | 2277 | *err = re_node_set_init_union (&next_nodes, table_nodes, |