1
0

patch-src_mntent_c 420 B

1234567891011
  1. --- watchdog-5.7.orig/src/mntent.c 2010-01-06 13:42:08.000000000 +0100
  2. +++ watchdog-5.7/src/mntent.c 2010-02-06 04:39:34.804334839 +0100
  3. @@ -157,7 +157,7 @@ my_getmntent (mntFILE *mfp) {
  4. if (fgets (buf, sizeof(buf), mfp->mntent_fp) == NULL)
  5. return NULL;
  6. - s = index (buf, '\n');
  7. + s = strchr (buf, '\n');
  8. if (s == NULL) {
  9. /* extremely long line - assume file was corrupted */
  10. mfp->mntent_errs = 1;