Commit d89ee5fd authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Test using carriage returns in SQL queries and imported tables.

parent 001e711b
......@@ -408,6 +408,10 @@ static LPWSTR msi_build_createsql_columns(LPWSTR *columns_data, LPWSTR *types, D
else
type = type_long;
break;
default:
ERR("Unknown type: %c\n", types[i][0]);
msi_free(columns);
return NULL;
}
sprintfW(expanded, column_fmt, columns_data[i], type, size, extra, comma);
......
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