aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pall <mike>2014-09-08 23:37:22 +0200
committerMike Pall <mike>2014-09-08 23:37:22 +0200
commit41156fe1cdd6b60a5e8d9855c57699e89ccfbf97 (patch)
tree9e2e3549ac433088d8dc810e4af1a369c5e50053
parent247ead6718767d4b83ca5e94ebb4b31331630551 (diff)
downloadluajit-41156fe1cdd6b60a5e8d9855c57699e89ccfbf97.tar.gz
luajit-41156fe1cdd6b60a5e8d9855c57699e89ccfbf97.tar.bz2
luajit-41156fe1cdd6b60a5e8d9855c57699e89ccfbf97.zip
FFI: Fix initialization of unions of subtypes.
Thanks to Peter Colberg.
Diffstat (limited to '')
-rw-r--r--src/lj_cconv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_cconv.c b/src/lj_cconv.c
index de4938e4..90cd36e3 100644
--- a/src/lj_cconv.c
+++ b/src/lj_cconv.c
@@ -702,6 +702,7 @@ static void cconv_substruct_init(CTState *cts, CType *d, uint8_t *dp,
702 } else if (ctype_isxattrib(df->info, CTA_SUBTYPE)) { 702 } else if (ctype_isxattrib(df->info, CTA_SUBTYPE)) {
703 cconv_substruct_init(cts, ctype_rawchild(cts, df), 703 cconv_substruct_init(cts, ctype_rawchild(cts, df),
704 dp+df->size, o, len, ip); 704 dp+df->size, o, len, ip);
705 if ((d->info & CTF_UNION)) break;
705 } /* Ignore all other entries in the chain. */ 706 } /* Ignore all other entries in the chain. */
706 } 707 }
707} 708}