summaryrefslogtreecommitdiffstats
path: root/hivex/hivex.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-01-21 16:19:26 +0000
committerRichard Jones <rjones@redhat.com>2010-01-28 11:25:30 +0000
commit203013dc166efb4067711baab59d3fe513c67921 (patch)
tree60209b3532bba3eedfeed3ee223a84c9f12f4478 /hivex/hivex.c
parent8635be75c5e5499c388049d10d28bc1313ca832c (diff)
downloadlibguestfs-203013dc166efb4067711baab59d3fe513c67921.tar.gz
libguestfs-203013dc166efb4067711baab59d3fe513c67921.tar.xz
libguestfs-203013dc166efb4067711baab59d3fe513c67921.zip
hivex: hive type in vk-record is an unsigned 32 bit int
Diffstat (limited to 'hivex/hivex.c')
-rw-r--r--hivex/hivex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hivex/hivex.c b/hivex/hivex.c
index 53e63517..73a21381 100644
--- a/hivex/hivex.c
+++ b/hivex/hivex.c
@@ -248,7 +248,7 @@ struct ntreg_vk_record {
*/
uint32_t data_len;
uint32_t data_offset; /* pointer to the data (or data if inline) */
- hive_type data_type; /* type of the data */
+ uint32_t data_type; /* type of the data */
uint16_t flags; /* bit 0 set => key name ASCII,
bit 0 clr => key name UTF-16.
Only seen ASCII here in the wild. */