Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
895b48e9
Commit
895b48e9
authored
Oct 06, 2011
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Mark fall-throughs in switch statements.
parent
48a61302
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
automation.c
dlls/msi/automation.c
+1
-0
database.c
dlls/msi/database.c
+4
-0
No files found.
dlls/msi/automation.c
View file @
895b48e9
...
...
@@ -1510,6 +1510,7 @@ static void variant_from_registry_value(VARIANT *pVarResult, DWORD dwType, LPBYT
while
(
idx
>=
0
&&
!
szString
[
idx
])
idx
--
;
for
(;
idx
>=
0
;
idx
--
)
if
(
!
szString
[
idx
])
szString
[
idx
]
=
'\n'
;
/* fall through */
case
REG_SZ
:
V_VT
(
pVarResult
)
=
VT_BSTR
;
V_BSTR
(
pVarResult
)
=
SysAllocStringByteLen
((
LPCSTR
)
szString
,
dwSize
);
...
...
dlls/msi/database.c
View file @
895b48e9
...
...
@@ -658,6 +658,7 @@ static LPWSTR msi_build_createsql_columns(LPWSTR *columns_data, LPWSTR *types, D
{
case
'l'
:
lstrcpyW
(
extra
,
type_notnull
);
/* fall through */
case
'L'
:
lstrcatW
(
extra
,
localizable
);
type
=
type_char
;
...
...
@@ -665,12 +666,14 @@ static LPWSTR msi_build_createsql_columns(LPWSTR *columns_data, LPWSTR *types, D
break
;
case
's'
:
lstrcpyW
(
extra
,
type_notnull
);
/* fall through */
case
'S'
:
type
=
type_char
;
sprintfW
(
size
,
size_fmt
,
ptr
);
break
;
case
'i'
:
lstrcpyW
(
extra
,
type_notnull
);
/* fall through */
case
'I'
:
if
(
len
<=
2
)
type
=
type_int
;
...
...
@@ -685,6 +688,7 @@ static LPWSTR msi_build_createsql_columns(LPWSTR *columns_data, LPWSTR *types, D
break
;
case
'v'
:
lstrcpyW
(
extra
,
type_notnull
);
/* fall through */
case
'V'
:
type
=
type_object
;
break
;
...
...
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