summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Compostella <jeremy.compostella@intel.com>2016-05-10 11:53:06 +0200
committerBadhri Jagan Sridharan <Badhri@google.com>2016-06-16 10:09:57 -0700
commitcf953128e1663b0a96e6d6999c84b008a96fe394 (patch)
tree5bc9fc95bf4b306416faa162676ba67825e248cb
parentaabbbfde4831c2a9c9c50a3bf38b2a3ff346b8f4 (diff)
downloadextras-cf953128e1663b0a96e6d6999c84b008a96fe394.tar.gz
libfec: pack the fec_header structure
The fec_header structure is generated build time and stored on disk. The fec_header might be build on a 64 bits machine while it is read per a 32 bits device or the other way around. In such situations, the fec_header fields are not aligned as expected by the device and it fails to read the fec_header structure. This patch makes the fec_header packed. Change-Id: I77546f850cea5559909971a1192e1a7616d22d50 Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com>
-rw-r--r--libfec/include/fec/io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libfec/include/fec/io.h b/libfec/include/fec/io.h
index 3b5dac06..670a5d7e 100644
--- a/libfec/include/fec/io.h
+++ b/libfec/include/fec/io.h
@@ -49,7 +49,7 @@ struct fec_header {
uint32_t fec_size;
uint64_t inp_size;
uint8_t hash[SHA256_DIGEST_LENGTH];
-};
+} __attribute__ ((packed));
struct fec_status {
int flags;