Overview
Comment: | Added missing call to free() |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
48a9cde717ab2444aae2470d7f5fa054 |
User & Date: | rkeene on 2014-05-04 07:17:27 |
Other Links: | manifest | tags |
Context
2014-05-04
| ||
07:20 | Yet another call to free() missing check-in: 75e4672f6a user: rkeene tags: trunk | |
07:17 | Added missing call to free() check-in: 48a9cde717 user: rkeene tags: trunk | |
07:04 | tcc4tcl version 0.3 check-in: df44ccaed5 user: rkeene tags: trunk, 0.3 | |
Changes
Modified build/tcc-patches/0.9.26/tcc-0.9.26-win32useopenlibs.diff from [269482c81f] to [21b33f7611].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + - + | diff -uNr tcc-0.9.26.orig/tccpe.c tcc-0.9.26-1win32useopenlibs/tccpe.c --- tcc-0.9.26.orig/tccpe.c 2013-02-15 08:24:00.000000000 -0600 |
︙ | |||
32 33 34 35 36 37 38 39 40 41 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | + - + | + for (i = 0; i < needed / sizeof(HMODULE); i++) { + v = (ADDR3264)GetProcAddress(modules[i], name); + if (v) { + break; + } + } + } + tcc_free(modules); } if (!v) tcc_error_noabort("undefined symbol '%s'", name); |
︙ |