Hans Leidekker : msi: Give the Name field from the _Streams table a valid type.

Alexandre Julliard julliard at winehq.org
Thu Feb 4 11:11:03 CST 2010


Module: wine
Branch: master
Commit: 95a21c27da63991f5c19811d28f36dac33eefed2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=95a21c27da63991f5c19811d28f36dac33eefed2

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu Feb  4 10:02:59 2010 +0100

msi: Give the Name field from the _Streams table a valid type.

---

 dlls/msi/streams.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msi/streams.c b/dlls/msi/streams.c
index 120b2b7..76b38cd 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:




More information about the wine-cvs mailing list