aboutsummaryrefslogtreecommitdiffstats
path: root/src/comp.c
diff options
context:
space:
mode:
authorAndrea Corallo2019-11-20 19:13:57 +0100
committerAndrea Corallo2020-01-01 11:38:08 +0100
commit630fcab4fcfa9afab4688d803892d76cf6f46961 (patch)
tree79e594c59076a7901b244c4b72aa44cf1e6c9fc6 /src/comp.c
parent37989f9431bc32f7ebac76cfc02f5e1d03486bcf (diff)
downloademacs-630fcab4fcfa9afab4688d803892d76cf6f46961.tar.gz
emacs-630fcab4fcfa9afab4688d803892d76cf6f46961.zip
fix missing goto into load_comp_unit
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c
index e604c31c5fe..3e5f8f29901 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -3290,7 +3290,10 @@ load_comp_unit (dynlib_handle_ptr handle, char *file_name)
3290 else if (!strcmp (f_str, "specbind")) 3290 else if (!strcmp (f_str, "specbind"))
3291 f_relocs[i] = (void *) specbind; 3291 f_relocs[i] = (void *) specbind;
3292 else 3292 else
3293 err_msg = format_string ("unexpected function relocation %s.", f_str); 3293 {
3294 err_msg = format_string ("unexpected function relocation %s.", f_str);
3295 goto exit_error;
3296 }
3294 } 3297 }
3295 3298
3296 /* Executing this will perform all the expected environment modification. */ 3299 /* Executing this will perform all the expected environment modification. */