Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bf94cc7b
Commit
bf94cc7b
authored
Mar 07, 2019
by
Zackery Spytz
Committed by
Steve Dower
Mar 07, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-36140: Fix an incorrect check in msidb_getsummaryinformation() (GH-12074)
parent
2f8f5649
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
PC/_msi.c
PC/_msi.c
+1
-1
No files found.
PC/_msi.c
View file @
bf94cc7b
...
...
@@ -916,7 +916,7 @@ msidb_getsummaryinformation(msiobj *db, PyObject *args)
return
msierror
(
status
);
oresult
=
PyObject_NEW
(
struct
msiobj
,
&
summary_Type
);
if
(
!
result
)
{
if
(
!
o
result
)
{
MsiCloseHandle
(
result
);
return
NULL
;
}
...
...
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