(on the basis that the first checkin should probably be something
simple and straightforward):
Fix for wrapped_readlink, allowing TRUENAME to return sensible
results on SPARC.
int bufsiz = strlen(path) + 16;
while (1) {
char *result = malloc(bufsiz);
- int n_read = readlink(path, result, n_read);
+ int n_read = readlink(path, result, bufsiz);
if (n_read < 0) {
free(result);
return 0;
;;; for internal versions, especially for internal versions off the
;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.7.1.38"
+"0.7.1.39"