diff options
| author | ruki <[email protected]> | 2026-07-18 23:17:40 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-07-18 23:17:40 +0800 |
| commit | 64439096a06b65556fff59f3b0b4e6a439b44129 (patch) | |
| tree | 7d2efb39c42d227dd32723ca5e02ba95f86cfda4 /core/src/xmake/binutils/coff/bin2coff.c | |
| parent | 108eaa6d115e03f44bd1f105328dbe90a7747b30 (diff) | |
| parent | cfebf2a690e1a0ad2255f64eec5bec43eeac0049 (diff) | |
Merge pull request #7655 from xmake-io/binutilsmaster
fix bin2obj for some archs
Diffstat (limited to 'core/src/xmake/binutils/coff/bin2coff.c')
| -rw-r--r-- | core/src/xmake/binutils/coff/bin2coff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/xmake/binutils/coff/bin2coff.c b/core/src/xmake/binutils/coff/bin2coff.c index ceb984a5c..791d4e2ba 100644 --- a/core/src/xmake/binutils/coff/bin2coff.c +++ b/core/src/xmake/binutils/coff/bin2coff.c @@ -303,12 +303,12 @@ tb_int_t xm_binutils_bin2coff(lua_State *lua) { } while (0); if (istream) { - tb_stream_clos(istream); + tb_stream_exit(istream); } istream = tb_null; if (ostream) { - tb_stream_clos(ostream); + tb_stream_exit(ostream); } ostream = tb_null; |
