regfree.c 738 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #include <sys/types.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include "regex.h"
  5. #include "utils.h"
  6. #include "regex2.h"
  7. /*
  8. - regfree - free everything
  9. = API_EXPORT(void) regfree(regex_t *);
  10. */
  11. API_EXPORT(void)
  12. regfree(preg)
  13. regex_t *preg;
  14. {
  15. register struct re_guts *g;
  16. if (preg->re_magic != MAGIC1) /* oops */
  17. return; /* nice to complain, but hard */
  18. g = preg->re_g;
  19. if (g == NULL || g->magic != MAGIC2) /* oops again */
  20. return;
  21. preg->re_magic = 0; /* mark it invalid */
  22. g->magic = 0; /* mark it invalid */
  23. if (g->strip != NULL)
  24. free((char *)g->strip);
  25. if (g->sets != NULL)
  26. free((char *)g->sets);
  27. if (g->setbits != NULL)
  28. free((char *)g->setbits);
  29. if (g->must != NULL)
  30. free(g->must);
  31. free((char *)g);
  32. }