diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-08-07 09:32:54 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-08-07 09:32:54 +0200 |
commit | 1fb4b2b100d76cfa362cd021760b7cc0038cf55d (patch) | |
tree | 2443bfdda69965757d8ce335cda1a28bb7327834 /sample/user_property.c | |
parent | b134093d75235a90f09ff591137aed9dbdad6e89 (diff) | |
parent | 40f3d0030e6e98bcb02d6523e5ee48497dec49a6 (diff) |
Update upstream source from tag 'upstream/6.9.3'
Update to upstream version '6.9.3'
with Debian dir 0b54db06b48ebf22a6090f21e4dcc045a1085e11
Diffstat (limited to 'sample/user_property.c')
-rw-r--r-- | sample/user_property.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sample/user_property.c b/sample/user_property.c index 8b2abd2..d52adc0 100644 --- a/sample/user_property.c +++ b/sample/user_property.c @@ -40,6 +40,7 @@ main(int argc, char* argv[]) char s[ONIG_MAX_ERROR_MESSAGE_LEN]; onig_error_code_to_str((UChar* )s, r); fprintf(stderr, "ERROR: %s\n", s); + onig_end(); return -1; } @@ -52,6 +53,7 @@ main(int argc, char* argv[]) char s[ONIG_MAX_ERROR_MESSAGE_LEN]; onig_error_code_to_str((UChar* )s, r, &einfo); fprintf(stderr, "onig_new: ERROR: %s\n", s); + onig_end(); return -1; } @@ -76,6 +78,9 @@ main(int argc, char* argv[]) char s[ONIG_MAX_ERROR_MESSAGE_LEN]; onig_error_code_to_str((UChar* )s, r); fprintf(stderr, "ERROR: %s\n", s); + onig_region_free(region, 1 /* 1:free self, 0:free contents only */); + onig_free(reg); + onig_end(); return -1; } |