cbfstool: Don't use le32toh(), it's non-standard
It's a BSD function, also, we missed to include `endian.h`. Just including `endian.h` doesn't fix the problem for everyone. Instead of digging deeper, just use our own endian-conversion from `commonlib`. Change-Id: Ia781b2258cafb0bcbe8408752a133cd28a888786 Reported-by: Werner Zeh <werner.zeh@siemens.com> Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/18157 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
parent
404f8ef420
commit
607796a4ff
|
@ -30,6 +30,7 @@
|
|||
#include "fit.h"
|
||||
#include "partitioned_file.h"
|
||||
#include <commonlib/fsp.h>
|
||||
#include <commonlib/endian.h>
|
||||
|
||||
#define SECTION_WITH_FIT_TABLE "BOOTBLOCK"
|
||||
|
||||
|
@ -445,8 +446,8 @@ static int cbfstool_convert_raw(struct buffer *buffer,
|
|||
|
||||
decompressed_size = buffer->size;
|
||||
if (param.precompression) {
|
||||
param.compression = le32toh(((uint32_t *)buffer->data)[0]);
|
||||
decompressed_size = le32toh(((uint32_t *)buffer->data)[1]);
|
||||
param.compression = read_le32(buffer->data);
|
||||
decompressed_size = read_le32(buffer->data + sizeof(uint32_t));
|
||||
compressed_size = buffer->size - 8;
|
||||
compressed = malloc(compressed_size);
|
||||
if (!compressed)
|
||||
|
|
Loading…
Reference in New Issue