diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-10-17 12:17:37 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-10-17 12:17:37 +0300 |
commit | 49a291d1713912ffb6801ced6f0c517e430a9a71 (patch) | |
tree | 896f6dbbe3415b475a7620a437626b6c2e2bc493 /ext.c | |
parent | 92b1be4a48425e584f29e223a56b261dddb4cdd5 (diff) | |
download | egawk-49a291d1713912ffb6801ced6f0c517e430a9a71.tar.gz egawk-49a291d1713912ffb6801ced6f0c517e430a9a71.tar.bz2 egawk-49a291d1713912ffb6801ced6f0c517e430a9a71.zip |
VMS build fixes.
Diffstat (limited to 'ext.c')
-rw-r--r-- | ext.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -397,6 +397,9 @@ close_extensions() { SRCFILE *s; + if (srcfiles == NULL) + return; + for (s = srcfiles->next; s != srcfiles; s = s->next) if (s->stype == SRC_EXTLIB && s->fini_func) (*s->fini_func)(); |