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
11bf5585
Commit
11bf5585
authored
12 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'public/bug2954_more'
parents
32d6acad
0da40bba
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/bug2954_more
+4
-0
4 additions, 0 deletions
changes/bug2954_more
src/or/microdesc.c
+10
-4
10 additions, 4 deletions
src/or/microdesc.c
with
14 additions
and
4 deletions
changes/bug2954_more
0 → 100644
+
4
−
0
View file @
11bf5585
o Minor bugfixes:
- If we fail to write a microdescriptor to disk, do not continue
replacing the old microdescriptor file. Fix for bug 2954; bugfix
on 0.2.2.6-alpha.
This diff is collapsed.
Click to expand it.
src/or/microdesc.c
+
10
−
4
View file @
11bf5585
...
...
@@ -80,7 +80,12 @@ dump_microdescriptor(FILE *f, microdesc_t *md, size_t *annotation_len_out)
char
annotation
[
ISO_TIME_LEN
+
32
];
format_iso_time
(
buf
,
md
->
last_listed
);
tor_snprintf
(
annotation
,
sizeof
(
annotation
),
"@last-listed %s
\n
"
,
buf
);
fputs
(
annotation
,
f
);
if
(
fputs
(
annotation
,
f
)
<
0
)
{
log_warn
(
LD_DIR
,
"Couldn't write microdescriptor annotation: %s"
,
strerror
(
ferror
(
f
)));
return
-
1
;
}
r
+=
strlen
(
annotation
);
*
annotation_len_out
=
r
;
}
else
{
...
...
@@ -226,9 +231,10 @@ microdescs_add_list_to_cache(microdesc_cache_t *cache,
size_t
annotation_len
;
size
=
dump_microdescriptor
(
f
,
md
,
&
annotation_len
);
if
(
size
<
0
)
{
/* XXX handle errors from dump_microdescriptor() */
/* log? return -1? die? coredump the universe? */
continue
;
/* we already warned in dump_microdescriptor; */
abort_writing_to_file
(
open_file
);
smartlist_clear
(
added
);
return
added
;
}
md
->
saved_location
=
SAVED_IN_JOURNAL
;
cache
->
journal_len
+=
size
;
...
...
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