Skip to content

Instantly share code, notes, and snippets.

@jordansissel
Created February 19, 2012 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jordansissel/1862008 to your computer and use it in GitHub Desktop.
Save jordansissel/1862008 to your computer and use it in GitHub Desktop.
int32_t * ei = NULL;
...
len = sizeof(il) + sizeof(dl) + (il * sizeof(struct entryInfo_s)) + dl;
...
ei = xmalloc(len);
ei[0] = htonl(il);
ei[1] = htonl(dl);
len -= sizeof(il) + sizeof(dl);
/* FIX: cast? */
if (timedRead(fd, (char *)&ei[2], len) != len)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment