Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
32083263
Commit
32083263
authored
Apr 12, 2000
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed branch on failure to get oid to
skip oid DECREFing logic.
parent
cde0e45e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/ZODB/coptimizations.c
src/ZODB/coptimizations.c
+3
-2
No files found.
src/ZODB/coptimizations.c
View file @
32083263
...
...
@@ -190,7 +190,7 @@ persistent_id_call(persistent_id *self, PyObject *args, PyObject *kwargs)
(
self
->
new_oid
=
PyObject_GetAttr
(
self
->
jar
,
py_new_oid
)))
goto
err
;
ASSIGN
(
oid
,
PyObject_CallObject
(
self
->
new_oid
,
NULL
));
UNLESS
(
oid
)
goto
err
;
UNLESS
(
oid
)
goto
null_oid
;
if
(
PyObject_SetAttr
(
object
,
py__p_jar
,
self
->
jar
)
<
0
)
goto
err
;
if
(
PyObject_SetAttr
(
object
,
py__p_oid
,
oid
)
<
0
)
goto
err
;
UNLESS
(
r
=
PyTuple_New
(
1
))
goto
err
;
...
...
@@ -254,6 +254,7 @@ err:
Py_DECREF
(
oid
);
oid
=
NULL
;
null_oid:
return_oid:
Py_XDECREF
(
jar
);
Py_XDECREF
(
klass
);
...
...
@@ -305,7 +306,7 @@ void
initcoptimizations
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
4
$"
;
char
*
rev
=
"$Revision: 1.
5
$"
;
#define make_string(S) if (! (py_ ## S=PyString_FromString(#S))) return
make_string
(
_p_oid
);
...
...
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