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
a6cdf8a5
...
a6cdf8a538d1e0a5155d975715cf6b48cb8e071a
authored
2005-09-09 07:30:58 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_search): Fix potential vulnerability: pass format string as a third argument to util_finish
1 parent
bb509411
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
imap4d/search.c
imap4d/search.c
View file @
a6cdf8a
...
...
@@ -196,7 +196,7 @@ imap4d_search (struct imap4d_command *command, char *arg)
char
buffer
[
64
];
rc
=
imap4d_search0
(
arg
,
0
,
buffer
,
sizeof
buffer
);
return
util_finish
(
command
,
rc
,
buffer
);
return
util_finish
(
command
,
rc
,
"%s"
,
buffer
);
}
int
...
...
Please
register
or
sign in
to post a comment