Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
712528cf
Commit
712528cf
authored
Oct 04, 2004
by
Patrick McHardy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET_SCHED]: Fix module leak in tc_ctl_tfilter error path
Signed-off-by:
Patrick McHardy
<
kaber@trash.net
>
parent
8d4198e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
net/sched/cls_api.c
net/sched/cls_api.c
+6
-2
No files found.
net/sched/cls_api.c
View file @
712528cf
...
...
@@ -231,8 +231,12 @@ static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n, void *arg)
tp
->
classify
=
tp_ops
->
classify
;
tp
->
classid
=
parent
;
err
=
-
EBUSY
;
if
(
!
try_module_get
(
tp_ops
->
owner
)
||
(
err
=
tp_ops
->
init
(
tp
))
!=
0
)
{
if
(
!
try_module_get
(
tp_ops
->
owner
))
{
kfree
(
tp
);
goto
errout
;
}
if
((
err
=
tp_ops
->
init
(
tp
))
!=
0
)
{
module_put
(
tp_ops
->
owner
);
kfree
(
tp
);
goto
errout
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment