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
57d0efa4
Commit
57d0efa4
authored
Jun 17, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jun 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Properties aren't case sensitive.
parent
705a0f02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
datainit.c
dlls/oledb32/datainit.c
+1
-1
database.c
dlls/oledb32/tests/database.c
+2
-0
No files found.
dlls/oledb32/datainit.c
View file @
57d0efa4
...
...
@@ -368,7 +368,7 @@ static HRESULT set_dbpropset(BSTR name, BSTR value, DBPROPSET **propset)
n
=
(
min
+
max
)
/
2
;
r
=
strcmpW
(
dbproperties
[
n
].
name
,
name
);
r
=
strcmp
i
W
(
dbproperties
[
n
].
name
,
name
);
if
(
!
r
)
break
;
...
...
dlls/oledb32/tests/database.c
View file @
57d0efa4
...
...
@@ -97,6 +97,7 @@ static void test_database(void)
'D'
,
'a'
,
't'
,
'a'
,
' '
,
'S'
,
'o'
,
'u'
,
'r'
,
'c'
,
'e'
,
'='
,
'd'
,
'u'
,
'm'
,
'm'
,
'y'
,
';'
,
'P'
,
'e'
,
'r'
,
's'
,
'i'
,
's'
,
't'
,
' '
,
'S'
,
'e'
,
'c'
,
'u'
,
'r'
,
'i'
,
't'
,
'y'
,
' '
,
'I'
,
'n'
,
'f'
,
'o'
,
'='
,
'F'
,
'a'
,
'l'
,
's'
,
'e'
,
';'
,
0
};
static
WCHAR
initstring_default
[]
=
{
'D'
,
'a'
,
't'
,
'a'
,
' '
,
'S'
,
'o'
,
'u'
,
'r'
,
'c'
,
'e'
,
'='
,
'd'
,
'u'
,
'm'
,
'm'
,
'y'
,
';'
,
0
};
static
WCHAR
initstring_lower
[]
=
{
'd'
,
'a'
,
't'
,
'a'
,
' '
,
's'
,
'o'
,
'u'
,
'r'
,
'c'
,
'e'
,
'='
,
'd'
,
'u'
,
'm'
,
'm'
,
'y'
,
';'
,
0
};
IDataInitialize
*
datainit
=
NULL
;
HRESULT
hr
;
...
...
@@ -111,6 +112,7 @@ static void test_database(void)
test_GetDataSource
(
NULL
);
test_GetDataSource
(
initstring_jet
);
test_GetDataSource
(
initstring_default
);
test_GetDataSource
(
initstring_lower
);
}
START_TEST
(
database
)
...
...
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