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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Joshua
wendelin.core
Commits
d486c5c4
Commit
d486c5c4
authored
Jul 15, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
0b57b358
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
bigfile/_bigfile.c
bigfile/_bigfile.c
+1
-1
bigfile/file_zodb.py
bigfile/file_zodb.py
+1
-1
No files found.
bigfile/_bigfile.c
View file @
d486c5c4
...
...
@@ -991,7 +991,7 @@ pyfileh_open(PyObject *pyfile0, PyObject *args)
return
NULL
;
Py_INCREF
(
pyfile
);
err
=
fileh_open
(
pyfileh
,
pyfile
,
ram
);
err
=
fileh_open
(
pyfileh
,
pyfile
,
ram
,
DONT_MMAP_OVERLAY
);
// XXX -> MMAP_OVERLAY if requested
if
(
err
)
{
XPyErr_SetFromErrno
();
Py_DECREF
(
pyfile
);
...
...
bigfile/file_zodb.py
View file @
d486c5c4
...
...
@@ -666,7 +666,7 @@ class _ZBigFileH(object):
self
.
zfileh
=
wcfileh
else
:
# XXX
self
.
zfileh
=
zfile
.
_v_file
.
fileh_open
(
mmap_overlay
=
_use_wcfs
)
self
.
zfileh
=
zfile
.
_v_file
.
fileh_open
()
# FIXME zfile._p_jar could be None (ex. ZBigFile is newly created
# before first commit)
...
...
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