diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-06 21:01:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-06 21:01:25 +0000 |
commit | 5cf53cc2083e0bc77d6d7301fff8c31038a410a2 (patch) | |
tree | 1d59ed6fc2eb95bfd1946b79e5b4761978afe5b4 /posix | |
parent | bb803bff5cb97b3de94896aba1c4ec0d67227524 (diff) | |
download | glibc-5cf53cc2083e0bc77d6d7301fff8c31038a410a2.zip glibc-5cf53cc2083e0bc77d6d7301fff8c31038a410a2.tar.gz glibc-5cf53cc2083e0bc77d6d7301fff8c31038a410a2.tar.bz2 |
Update.
2005-01-06 Ulrich Drepper <drepper@redhat.com>
* misc/sys/cdefs.h: Define __wur.
* libio/stdio.h: Use __wur for a number of interfaces.
* posix/unistd.h: Likewise.
* posix/regex_internal.c (free_state): Free word_trtable.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/regex_internal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/posix/regex_internal.c b/posix/regex_internal.c index 001b50b..f15cb57 100644 --- a/posix/regex_internal.c +++ b/posix/regex_internal.c @@ -1668,6 +1668,7 @@ free_state (state) re_free (state->entrance_nodes); } re_node_set_free (&state->nodes); + re_free (state->word_trtable); re_free (state->trtable); re_free (state); } |