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
7444eda3
Commit
7444eda3
authored
Oct 09, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #1572724: fix typo ('=' instead of '==') in _msi.c.
(backport from rev. 52251)
parent
0037300f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Misc/NEWS
Misc/NEWS
+2
-0
PC/_msi.c
PC/_msi.c
+1
-1
No files found.
Misc/NEWS
View file @
7444eda3
...
...
@@ -49,6 +49,8 @@ Core and builtins
Extension
Modules
-----------------
-
Patch
#
1572724
:
fix
typo
(
'='
instead
of
'=='
)
in
_msi
.
c
.
-
Bug
#
1572832
:
fix
a
bug
in
ISO
-
2022
codecs
which
may
cause
segfault
when
encoding
non
-
BMP
unicode
characters
.
...
...
PC/_msi.c
View file @
7444eda3
...
...
@@ -495,7 +495,7 @@ summary_getproperty(msiobj* si, PyObject *args)
status
=
MsiSummaryInfoGetProperty
(
si
->
h
,
field
,
&
type
,
&
ival
,
&
fval
,
sval
,
&
ssize
);
if
(
status
=
ERROR_MORE_DATA
)
{
if
(
status
=
=
ERROR_MORE_DATA
)
{
sval
=
malloc
(
ssize
);
status
=
MsiSummaryInfoGetProperty
(
si
->
h
,
field
,
&
type
,
&
ival
,
&
fval
,
sval
,
&
ssize
);
...
...
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