diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-15 09:34:27 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-15 09:34:27 -0700 |
commit | f199fd990639f93d07d8e104b0a66aabaf01d67d (patch) | |
tree | 268fe35b46db1e1c28443c567e445e2ffdc61e39 /kernel | |
parent | 043fe50f8085c12651c96f04576eae4d8a22f3d8 (diff) | |
parent | b3e62e35058fc744ac794611f4e79bcd1c5a4b83 (diff) | |
download | op-kernel-dev-f199fd990639f93d07d8e104b0a66aabaf01d67d.zip op-kernel-dev-f199fd990639f93d07d8e104b0a66aabaf01d67d.tar.gz |
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()
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/perf_counter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c index e0d91fd..e7f60f8 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); |