Nico Huber submitted this change.

View Change

Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved Angel Pons: Looks good to me, approved
libflashrom: remove flashrom_supported_programmers

const char **flashrom_supported_programmers(void) returns an array of
strings without returning the array size or making a NULL
termination. This can lead to undefined behavior when iterating over the
array.

Change-Id: I0157926a654e337c14d840dd398e5576471c304f
Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.de>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/55350
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
---
M libflashrom.c
M libflashrom.h
M libflashrom.map
3 files changed, 0 insertions(+), 22 deletions(-)

diff --git a/libflashrom.c b/libflashrom.c
index 67d3ef3..d999efc 100644
--- a/libflashrom.c
+++ b/libflashrom.c
@@ -114,26 +114,6 @@
}

/**
- * @brief Returns list of supported programmers
- * @return List of supported programmers, or NULL if an error occurred
- */
-const char **flashrom_supported_programmers(void)
-{
- size_t p = 0;
- const char **supported_programmers = malloc((programmer_table_size + 1) * sizeof(char*));
-
- if (supported_programmers != NULL) {
- for (; p < programmer_table_size; ++p) {
- supported_programmers[p] = programmer_table[p]->name;
- }
- } else {
- msg_gerr("Memory allocation error!\n");
- }
-
- return supported_programmers;
-}
-
-/**
* @brief Returns list of supported flash chips
* @return List of supported flash chips, or NULL if an error occurred
*/
diff --git a/libflashrom.h b/libflashrom.h
index d0d5826..f2b3e46 100644
--- a/libflashrom.h
+++ b/libflashrom.h
@@ -76,7 +76,6 @@

const char *flashrom_version_info(void);
void flashrom_system_info(void);
-const char **flashrom_supported_programmers(void);
struct flashrom_flashchip_info *flashrom_supported_flash_chips(void);
struct flashrom_board_info *flashrom_supported_boards(void);
struct flashrom_chipset_info *flashrom_supported_chipsets(void);
diff --git a/libflashrom.map b/libflashrom.map
index d6dd24d..0c28a68 100644
--- a/libflashrom.map
+++ b/libflashrom.map
@@ -24,7 +24,6 @@
flashrom_programmer_shutdown;
flashrom_set_log_callback;
flashrom_shutdown;
- flashrom_supported_programmers;
flashrom_system_info;
flashrom_version_info;
local: *;

To view, visit change 55350. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: I0157926a654e337c14d840dd398e5576471c304f
Gerrit-Change-Number: 55350
Gerrit-PatchSet: 4
Gerrit-Owner: Thomas Heijligen <src@posteo.de>
Gerrit-Reviewer: ?ukasz Dmitrowski <lukasz.dmitrowski@gmail.com>
Gerrit-Reviewer: Angel Pons <th3fanbus@gmail.com>
Gerrit-Reviewer: David Hendricks <david.hendricks@gmail.com>
Gerrit-Reviewer: Michał Żygowski <michal.zygowski@3mdeb.com>
Gerrit-Reviewer: Nico Huber <nico.h@gmx.de>
Gerrit-Reviewer: Piotr Król <piotr.krol@3mdeb.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-MessageType: merged