-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
55 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
2015-09-14 André Colomb <[email protected]> | ||
|
||
* Fix possible memory access error caused by a missing check for | ||
the source field size in field copy functions. This changes the | ||
signature of the field_copy_f function prototype and all its | ||
implementations. Therefore bump the minor version. | ||
|
||
* Release version 0.5 | ||
|
||
2015-08-14 André Colomb <[email protected]> | ||
|
||
* Fix segmentation fault when using Intel Hex files, caused by an | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
# <http://www.gnu.org/licenses/>. | ||
|
||
|
||
AC_INIT([elf-mangle], [0.4.2], [[email protected]]) | ||
AC_INIT([elf-mangle], [0.5], [[email protected]]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
AC_CONFIG_SRCDIR([src/elf-mangle.c]) | ||
AC_CONFIG_AUX_DIR([.]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: elf-mangle 0.1\n" | ||
"Report-Msgid-Bugs-To: [email protected]\n" | ||
"POT-Creation-Date: 2015-07-22 12:55+0200\n" | ||
"POT-Creation-Date: 2015-09-14 10:53+0200\n" | ||
"PO-Revision-Date: 2015-07-22 12:56+0100\n" | ||
"Last-Translator: Andre Colomb <[email protected]>\n" | ||
"Language-Team: German\n" | ||
|
@@ -61,7 +61,7 @@ msgstr " (%<PRIu8> nicht druckbare Zeichen durch %c ersetzt)" | |
msgid "<unknown version> (%<PRIu8> bytes)" | ||
msgstr "<unbekannte Version> (%<PRIu8> Byte)" | ||
|
||
#: src/custom_known_fields.c:202 | ||
#: src/custom_known_fields.c:206 | ||
#, c-format | ||
msgid "" | ||
"WARNING: %s changed to match target hardware type!\n" | ||
|
@@ -72,11 +72,11 @@ msgstr "" | |
"\t\t%02<PRIu8> (%s) in Zielobjekt\n" | ||
"\t\t%02<PRIu8> (%s) aus Abbild gelesen\n" | ||
|
||
#: src/custom_known_fields.c:219 | ||
#: src/custom_known_fields.c:223 | ||
msgid "Unique system identification" | ||
msgstr "Eindeutige Systemkennung" | ||
|
||
#: src/custom_known_fields.c:221 | ||
#: src/custom_known_fields.c:225 | ||
msgid "System firmware version" | ||
msgstr "Firmwareversion des Systems" | ||
|
||
|
@@ -431,17 +431,17 @@ msgstr "Größe der Sektion: %zu Byte\n" | |
msgid "%s: Target `%s' (%p) matches source symbol %p\n" | ||
msgstr "%s: Ziel '%s' (%p) entspricht Symbol %p in Quelle\n" | ||
|
||
#: src/transform.c:70 | ||
#: src/transform.c:71 | ||
#, c-format | ||
msgid "%s: %zu of %zu bytes copied\n" | ||
msgstr "%s: %zu von %zu Byte kopiert\n" | ||
|
||
#: src/transform.c:73 | ||
#: src/transform.c:74 | ||
#, c-format | ||
msgid "Target map field %s not found in source.\n" | ||
msgstr "Feld %s der Zielzuordnung nicht in der Quelle gefunden.\n" | ||
|
||
#: src/transform.c:90 | ||
#: src/transform.c:91 | ||
#, c-format | ||
msgid "%s: Copy %d symbols in to %d out\n" | ||
msgstr "%s: Kopiere %d Quellsymbole auf %d Ziele\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters