diff options
author | SVN Migration <svn@php.net> | 2002-11-26 01:38:49 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-11-26 01:38:49 +0000 |
commit | 83fc7fc84fc2b439da0cc4e08cb511d9753dbcca (patch) | |
tree | e884842697b6fca255c96f627a4dbd17f0a7d97a /regex/regfree.c | |
parent | 693204265e3970c58932aef21fb4d25e3f1ea1fd (diff) | |
download | php-git-RELEASE_1_0b2.tar.gz |
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_0b2'.RELEASE_1_0b2
Diffstat (limited to 'regex/regfree.c')
-rw-r--r-- | regex/regfree.c | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/regex/regfree.c b/regex/regfree.c deleted file mode 100644 index 9fd618a13b..0000000000 --- a/regex/regfree.c +++ /dev/null @@ -1,37 +0,0 @@ -#include <sys/types.h> -#include <stdio.h> -#include <stdlib.h> -#include <regex.h> - -#include "utils.h" -#include "regex2.h" - -/* - - regfree - free everything - = API_EXPORT(void) regfree(regex_t *); - */ -API_EXPORT(void) -regfree(preg) -regex_t *preg; -{ - register struct re_guts *g; - - if (preg->re_magic != MAGIC1) /* oops */ - return; /* nice to complain, but hard */ - - g = preg->re_g; - if (g == NULL || g->magic != MAGIC2) /* oops again */ - return; - preg->re_magic = 0; /* mark it invalid */ - g->magic = 0; /* mark it invalid */ - - if (g->strip != NULL) - free((char *)g->strip); - if (g->sets != NULL) - free((char *)g->sets); - if (g->setbits != NULL) - free((char *)g->setbits); - if (g->must != NULL) - free(g->must); - free((char *)g); -} |