Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
31c5652d
Commit
31c5652d
authored
Jul 27, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix some memory leaks in the condition parser.
parent
f3dae17c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
cond.y
dlls/msi/cond.y
+5
-0
No files found.
dlls/msi/cond.y
View file @
31c5652d
...
...
@@ -186,6 +186,7 @@ boolean_factor:
|
value_s
{
$$
=
($
1
&&
$
1
[
0
])
?
1
:
0
;
msi_free
($
1
);
}
|
value_i
operator
value_i
{
...
...
@@ -198,6 +199,7 @@ boolean_factor:
$$
=
compare_int
(
num
,
$
2
,
$
3
);
else
$$
=
($
2
==
COND_NE
||
$
2
==
COND_INE
);
msi_free
($
1
);
}
|
value_i
operator
symbol_s
{
...
...
@@ -206,6 +208,7 @@ boolean_factor:
$$
=
compare_int
(
$
1
,
$
2
,
num
);
else
$$
=
($
2
==
COND_NE
||
$
2
==
COND_INE
);
msi_free
($
3
);
}
|
symbol_s
operator
symbol_s
{
...
...
@@ -226,10 +229,12 @@ boolean_factor:
|
literal
operator
value_i
{
$$
=
0
;
msi_free
($
1
);
}
|
value_i
operator
literal
{
$$
=
0
;
msi_free
($
3
);
}
|
COND_LPAR
expression
COND_RPAR
{
...
...
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