Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
c2dbb827
...
c2dbb82705a9044ac7d5ed8a908a583eb40700e4
authored
2003-06-26 14:26:32 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_auth_register_module): Fixed memory overrun.
1 parent
a4e393cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/mu_auth.c
mailbox/mu_auth.c
View file @
c2dbb82
...
...
@@ -273,7 +273,7 @@ mu_auth_register_module (struct mu_auth_module *mod)
for
(
i
=
0
;
mu_auth_argp
.
children
[
i
].
argp
;
i
++
)
;
tmp
=
realloc
((
void
*
)
mu_auth_argp
.
children
,
(
i
+
1
)
*
sizeof
(
mu_auth_argp
.
children
[
0
]));
(
i
+
2
)
*
sizeof
(
mu_auth_argp
.
children
[
0
]));
mu_auth_argp
.
children
=
tmp
;
}
else
...
...
Please
register
or
sign in
to post a comment