Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
wendelin.core
Commits
2db5bb31
Commit
2db5bb31
authored
Feb 13, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
0a387dfc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
wcfs/client/wcfs.cpp
wcfs/client/wcfs.cpp
+4
-4
No files found.
wcfs/client/wcfs.cpp
View file @
2db5bb31
...
...
@@ -322,9 +322,9 @@ pair<FileH, error> _Conn::open(zodb::Oid foid) {
if
(
err
!=
nil
)
return
make_pair
(
nil
,
E
(
err
));
bool
all
ok
=
false
;
bool
ret
ok
=
false
;
defer
([
&
]()
{
if
(
!
all
ok
)
if
(
!
ret
ok
)
f
->
_headf
->
close
();
});
...
...
@@ -339,7 +339,7 @@ pair<FileH, error> _Conn::open(zodb::Oid foid) {
wconn
.
_filehtab
[
foid
]
=
f
;
defer
([
&
]()
{
if
(
!
all
ok
)
if
(
!
ret
ok
)
wconn
.
_filehtab
.
erase
(
foid
);
});
...
...
@@ -352,7 +352,7 @@ pair<FileH, error> _Conn::open(zodb::Oid foid) {
return
make_pair
(
nil
,
fmt
::
errorf
(
"watch: %s"
,
v
(
ack
)));
}
all
ok
=
true
;
ret
ok
=
true
;
return
make_pair
(
f
,
nil
);
}
...
...
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