Comments
Patch
@@ -30,8 +30,8 @@
#define QCOW_MAGIC (('Q' << 24) | ('F' << 16) | ('I' << 8) | 0xfb)
#define QCOW_VERSION 2
-#define QCOW_OFLAG_COPIED (1LL << 63)
-#define QCOW_OFLAG_COMPRESSED (1LL << 62)
+#define QCOW_OFLAG_COPIED (1LLU << 63)
+#define QCOW_OFLAG_COMPRESSED (1LLU << 62)
#define QCOW_COMPRESSED 1
#define QCOW_ENCRYPTED 2
@@ -47,7 +47,7 @@ extern int optind;
#include "../version.h"
#include "nls-enable.h"
-#define QCOW_OFLAG_COPIED (1LL << 63)
+#define QCOW_OFLAG_COPIED (1LLU << 63)
const char * program_name = "e2image";
QCOW_OFLAG_COPIED in qcow2.h and e2image.c was defined as a signed value, which however does not fit in a signed 64-bit integer. Caught by clang -fsanitize=undefined. Signed-off-by: Sami Liedes <sami.liedes@iki.fi> --- lib/ext2fs/qcow2.h | 4 ++-- misc/e2image.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)