> @@ -39,6 +39,8 @@ imap_f(int argc, char **argv) > - if (count == 0) > + if (count == 0) { > + free(t); > return 0; > + } please use a goto out_free; here > > for (i = 0; i < count; i++) { > printf(_("ino %10llu count %2d mask %016llx\n"), > (unsigned long long)t[i].xi_startino, > @@ -55,6 +59,7 @@ imap_f(int argc, char **argv) > (unsigned long long)t[i].xi_allocmask); > } > } > + free(t); > perror("xfsctl(XFS_IOC_FSINUMBERS)"); > exitcode = 1; > return 0; and place the free just before the return here so that we have a single uwinding exit. Otherwise this looks good to me. _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs