From 211469dd06c4354790506ad41e0fd8c00cedc0d3 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Wed, 27 Jun 2012 11:33:31 +0200 Subject: [PATCH] wbemprox: Set the row count in fill_processor. --- dlls/wbemprox/builtin.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c index eaffc80b20a..7a4ee56e400 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 )