Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
8f0b2996
Commit
8f0b2996
authored
5 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge branch 'ticket30561_029' into ticket30561_035
parents
e5deb2bb
0e0cf4ab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/bug30561
+6
-0
6 additions, 0 deletions
changes/bug30561
src/lib/string/printf.c
+13
-3
13 additions, 3 deletions
src/lib/string/printf.c
with
19 additions
and
3 deletions
changes/bug30561
0 → 100644
+
6
−
0
View file @
8f0b2996
o Minor bugfixes (portability):
- Avoid crashing in our tor_vasprintf() implementation on systems that
define neither vasprintf() nor _vscprintf(). (This bug has been here
long enough that we question whether people are running Tor on such
systems, but we're applying the fix out of caution.) Fixes bug 30561;
bugfix on 0.2.8.2-alpha. Found and fixed by Tobias Stoeckmann.
This diff is collapsed.
Click to expand it.
src/lib/string/printf.c
+
13
−
3
View file @
8f0b2996
...
...
@@ -131,14 +131,24 @@ tor_vasprintf(char **strp, const char *fmt, va_list args)
* characters we need. We give it a try on a short buffer first, since
* it might be nice to avoid the second vsnprintf call.
*/
/* XXXX This code spent a number of years broken (see bug 30651). It is
* possible that no Tor users actually run on systems without vasprintf() or
* _vscprintf(). If so, we should consider removing this code. */
char
buf
[
128
];
int
len
,
r
;
va_list
tmp_args
;
va_copy
(
tmp_args
,
args
);
/* vsnprintf() was properly checked but tor_vsnprintf() available so
* why not use it? */
len
=
tor_vsnprintf
(
buf
,
sizeof
(
buf
),
fmt
,
tmp_args
);
/* Use vsnprintf to retrieve needed length. tor_vsnprintf() is not an
* option here because it will simply return -1 if buf is not large enough
* to hold the complete string.
*/
len
=
vsnprintf
(
buf
,
sizeof
(
buf
),
fmt
,
tmp_args
);
va_end
(
tmp_args
);
buf
[
sizeof
(
buf
)
-
1
]
=
'\0'
;
if
(
len
<
0
)
{
*
strp
=
NULL
;
return
-
1
;
}
if
(
len
<
(
int
)
sizeof
(
buf
))
{
*
strp
=
tor_strdup
(
buf
);
return
len
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment