From 95a21c27da63991f5c19811d28f36dac33eefed2 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Thu, 4 Feb 2010 10:02:59 +0100 Subject: [PATCH] msi: Give the Name field from the _Streams table a valid type. --- dlls/msi/streams.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/streams.c b/dlls/msi/streams.c index 120b2b77b77..76b38cde513 100644 --- a/dlls/msi/streams.c +++ b/dlls/msi/streams.c @@ -287,7 +287,7 @@ static UINT STREAMS_get_column_info(struct tagMSIVIEW *view, UINT n, { case 1: name_ptr = Name; - if (type) *type = MSITYPE_STRING | MAX_STREAM_NAME_LEN; + if (type) *type = MSITYPE_STRING | MSITYPE_VALID | MAX_STREAM_NAME_LEN; break; case 2: -- 2.11.4.GIT