aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-09-15 09:34:27 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2009-09-15 09:34:27 -0700
commitf199fd990639f93d07d8e104b0a66aabaf01d67d (patch)
tree268fe35b46db1e1c28443c567e445e2ffdc61e39
parent043fe50f8085c12651c96f04576eae4d8a22f3d8 (diff)
parentb3e62e35058fc744ac794611f4e79bcd1c5a4b83 (diff)
Merge branch 'perfcounters-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'perfcounters-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: perf_counter: Fix buffer overflow in perf_copy_attr()
-rw-r--r--kernel/perf_counter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c
index e0d91fdf0c3..e7f60f8e31e 100644
--- a/kernel/perf_counter.c
+++ b/kernel/perf_counter.c
@@ -4215,6 +4215,7 @@ static int perf_copy_attr(struct perf_counter_attr __user *uattr,
if (val)
goto err_size;
}
+ size = sizeof(*attr);
}
ret = copy_from_user(attr, uattr, size);