Module: wine Branch: master Commit: 211469dd06c4354790506ad41e0fd8c00cedc0d3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=211469dd06c4354790506ad41e...
Author: Hans Leidekker hans@codeweavers.com Date: Wed Jun 27 11:33:31 2012 +0200
wbemprox: Set the row count in fill_processor.
---
dlls/wbemprox/builtin.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c index eaffc80..7a4ee56 100644 --- a/dlls/wbemprox/builtin.c +++ b/dlls/wbemprox/builtin.c @@ -376,6 +376,9 @@ static void fill_processor( struct table *table ) rec->device_id = heap_strdupW( device_id ); offset += sizeof(*rec); } + + TRACE("created %u rows\n", count); + table->num_rows = count; }
static void fill_os( struct table *table )