]> git.wh0rd.org - ICEs.git/blobdiff - 290097/test.i.0
more ices
[ICEs.git] / 290097 / test.i.0
diff --git a/290097/test.i.0 b/290097/test.i.0
new file mode 100644 (file)
index 0000000..d490ce6
--- /dev/null
@@ -0,0 +1,20 @@
+typedef unsigned char u8;
+typedef unsigned short u16;
+
+struct s {
+       u8 anchor[5];
+       u16 table_length;
+};
+
+void some_function(int x);
+
+void other_function(const struct s *pointer)
+{
+       u8 checksum = 0;
+       const u8 *ptr = (const u8 *)(pointer);
+
+       for (unsigned int i = 0; i < sizeof(*pointer); ++i)
+               checksum = (checksum + ptr[i]) & 0xFF;
+
+       some_function((int)checksum);
+}