I don't think these warnings are for real problems, so just suppress them.
I don't understand why the change to datasheet-test.c suppresses a warning,
but it does.
DIST_HOOKS += generate-changelog
-GL_CFLAG_GNULIB_WARNINGS = -Wno-missing-prototypes -Wno-unused-parameter
+GL_CFLAG_GNULIB_WARNINGS = -Wno-missing-prototypes -Wno-unused-parameter -Wno-alloc-size-larger-than
include $(top_srcdir)/build-aux/automake.mk
include $(top_srcdir)/gl/automake.mk
datasheet_delete_rows (ds, pos, n);
- release_data (n, oproto, &data[pos]);
+ release_data (n, oproto, data + pos);
remove_range (&data[0], n_rows, sizeof data[0], pos, n);
check_datasheet (mc, ds, data, n_rows - n, oproto);
offset);
}
assert (offset + n <= length);
+ assert (offset <= length);
if (type == SEG_NEWLINE)
{