diff options
author | Justus Winter <[email protected]> | 2016-12-21 15:14:45 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-12-21 15:14:45 +0000 |
commit | aa6b3449bf1b42703b4c6466d87f91620743a5d2 (patch) | |
tree | f22961aa518997572d6ff6785e6d0cd14834dfda | |
parent | tests: Move argument parser. (diff) | |
download | libgpg-error-aa6b3449bf1b42703b4c6466d87f91620743a5d2.tar.gz libgpg-error-aa6b3449bf1b42703b4c6466d87f91620743a5d2.zip |
gpgscm: Guard use of union member.
* tests/gpgscm/scheme.c (opexe_5): Check that we have a file port
before accessing filename. Fixes a crash on 32-bit architectures.
Fixes-commit: e7429b1ced0c69fa7901f888f8dc25f00fc346a4
Signed-off-by: Justus Winter <[email protected]>
-rw-r--r-- | scheme.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4838,7 +4838,7 @@ static pointer opexe_5(scheme *sc, enum scheme_opcodes op) { } else { sc->nesting_stack[sc->file_i]++; #if USE_TAGS && SHOW_ERROR_LINE - { + if (sc->load_stack[sc->file_i].kind & port_file) { const char *filename = sc->load_stack[sc->file_i].rep.stdio.filename; int lineno = |