Nguyễn Thái Ngọc Duy <pclo...@gmail.com> writes: > +struct untracked_cache *read_untracked_extension(const void *data, unsigned > long sz) > +{ > + const struct ondisk_untracked_cache *ouc; > + struct untracked_cache *uc; > + struct read_data rd; > + const unsigned char *next = data, *end = data + sz;
data + sz is arithmetic on void * which is a no-no. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html