Commit 95a21c27 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

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

parent 24dd10c6
...@@ -287,7 +287,7 @@ static UINT STREAMS_get_column_info(struct tagMSIVIEW *view, UINT n, ...@@ -287,7 +287,7 @@ static UINT STREAMS_get_column_info(struct tagMSIVIEW *view, UINT n,
{ {
case 1: case 1:
name_ptr = Name; name_ptr = Name;
if (type) *type = MSITYPE_STRING | MAX_STREAM_NAME_LEN; if (type) *type = MSITYPE_STRING | MSITYPE_VALID | MAX_STREAM_NAME_LEN;
break; break;
case 2: case 2:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment