Miklos
--- linux-2.5.68/fs/proc/generic.c~ 2003-03-05 04:29:55.000000000 +0100
+++ linux-2.5.68/fs/proc/generic.c 2003-04-25 15:00:02.000000000 +0200
@@ -136,11 +136,11 @@
"proc_file_read: Apparent buffer overflow!\n");
n = PAGE_SIZE;
}
- if (n > count)
- n = count;
n -= *ppos;
if (n <= 0)
break;
+ if (n > count)
+ n = count;
start = page + *ppos;
} else if (start < page) {
if (n > PAGE_SIZE) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/