Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
f1f4f1d9
Commit
f1f4f1d9
authored
12 years ago
by
Hans Leidekker
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
wbemprox: Store the result index in the class enumerator instead of the view.
parent
211469dd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/wbemprox/class.c
+10
-9
10 additions, 9 deletions
dlls/wbemprox/class.c
dlls/wbemprox/query.c
+0
-1
0 additions, 1 deletion
dlls/wbemprox/query.c
dlls/wbemprox/wbemprox_private.h
+0
-1
0 additions, 1 deletion
dlls/wbemprox/wbemprox_private.h
with
10 additions
and
11 deletions
dlls/wbemprox/class.c
+
10
−
9
View file @
f1f4f1d9
...
...
@@ -36,6 +36,7 @@ struct enum_class_object
IEnumWbemClassObject
IEnumWbemClassObject_iface
;
LONG
refs
;
struct
query
*
query
;
UINT
index
;
};
static
inline
struct
enum_class_object
*
impl_from_IEnumWbemClassObject
(
...
...
@@ -92,11 +93,10 @@ static HRESULT WINAPI enum_class_object_Reset(
IEnumWbemClassObject
*
iface
)
{
struct
enum_class_object
*
ec
=
impl_from_IEnumWbemClassObject
(
iface
);
struct
view
*
view
=
ec
->
query
->
view
;
TRACE
(
"%p
\n
"
,
iface
);
view
->
index
=
0
;
ec
->
index
=
0
;
return
WBEM_S_NO_ERROR
;
}
...
...
@@ -118,14 +118,14 @@ static HRESULT WINAPI enum_class_object_Next(
if
(
lTimeout
!=
WBEM_INFINITE
)
FIXME
(
"timeout not supported
\n
"
);
*
puReturned
=
0
;
if
(
view
->
index
+
uCount
>
view
->
count
)
return
WBEM_S_FALSE
;
if
(
ec
->
index
+
uCount
>
view
->
count
)
return
WBEM_S_FALSE
;
hr
=
WbemClassObject_create
(
NULL
,
iface
,
view
->
index
,
(
void
**
)
apObjects
);
hr
=
WbemClassObject_create
(
NULL
,
iface
,
ec
->
index
,
(
void
**
)
apObjects
);
if
(
hr
!=
S_OK
)
return
hr
;
view
->
index
++
;
ec
->
index
++
;
*
puReturned
=
1
;
if
(
view
->
index
==
view
->
count
)
return
WBEM_S_FALSE
;
if
(
ec
->
index
==
view
->
count
)
return
WBEM_S_FALSE
;
if
(
uCount
>
1
)
return
WBEM_S_TIMEDOUT
;
return
WBEM_S_NO_ERROR
;
}
...
...
@@ -159,12 +159,12 @@ static HRESULT WINAPI enum_class_object_Skip(
if
(
lTimeout
!=
WBEM_INFINITE
)
FIXME
(
"timeout not supported
\n
"
);
if
(
view
->
index
+
nCount
>=
view
->
count
)
if
(
ec
->
index
+
nCount
>=
view
->
count
)
{
view
->
index
=
view
->
count
-
1
;
ec
->
index
=
view
->
count
-
1
;
return
WBEM_S_FALSE
;
}
view
->
index
+=
nCount
;
ec
->
index
+=
nCount
;
return
WBEM_S_NO_ERROR
;
}
...
...
@@ -193,6 +193,7 @@ HRESULT EnumWbemClassObject_create(
ec
->
IEnumWbemClassObject_iface
.
lpVtbl
=
&
enum_class_object_vtbl
;
ec
->
refs
=
1
;
ec
->
query
=
query
;
ec
->
index
=
0
;
*
ppObj
=
&
ec
->
IEnumWbemClassObject_iface
;
...
...
This diff is collapsed.
Click to expand it.
dlls/wbemprox/query.c
+
0
−
1
View file @
f1f4f1d9
...
...
@@ -172,7 +172,6 @@ HRESULT create_view( const struct property *proplist, const WCHAR *class,
view
->
cond
=
cond
;
view
->
result
=
NULL
;
view
->
count
=
0
;
view
->
index
=
0
;
*
ret
=
view
;
return
S_OK
;
}
...
...
This diff is collapsed.
Click to expand it.
dlls/wbemprox/wbemprox_private.h
+
0
−
1
View file @
f1f4f1d9
...
...
@@ -100,7 +100,6 @@ struct view
const
struct
expr
*
cond
;
UINT
*
result
;
UINT
count
;
UINT
index
;
};
struct
query
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment