summaryrefslogtreecommitdiff
path: root/tools/d2c/conv.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-03-25 22:24:41 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-03-25 22:24:41 (GMT)
commita6bedf6104ccd7d8050e9d6a58f32c0827e3383c (patch)
tree3d06871144b1074ea5b70f4a4a6e08cf1418ff44 /tools/d2c/conv.c
parent276ec9c9b8a3b283751c8d8c59f70c3fc88d5b0d (diff)
Fixed a regression by taking care of results before going to a error exit.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@494 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'tools/d2c/conv.c')
-rw-r--r--tools/d2c/conv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/d2c/conv.c b/tools/d2c/conv.c
index 9947593..3fae6df 100644
--- a/tools/d2c/conv.c
+++ b/tools/d2c/conv.c
@@ -358,7 +358,7 @@ bool define_conv_func(conv_func *func, bool last, bool internal, int fd, const c
{
/* Si l'on doit manipuler une propriété d'instructon... */
if (internal)
- result = call_instr_func(callable, func->args, fd, bits, list, pp);
+ result = checked_call_instr_func(callable, func->args, fd, bits, list, pp);
/* Si on doit constituer un opérande à ajouter... */
else