Skip to content
Snippets Groups Projects
Commit 8268c474 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

reg: Add missing null to terminate a string.

parent 0501ad92
No related branches found
No related tags found
No related merge requests found
......@@ -316,7 +316,7 @@ static void export_file_header(HANDLE hFile)
{
static const WCHAR header[] = { 0xfeff,'W','i','n','d','o','w','s',' ',
'R','e','g','i','s','t','r','y',' ','E','d','i','t','o','r',' ',
'V','e','r','s','i','o','n',' ','5','.','0','0','\r','\n'};
'V','e','r','s','i','o','n',' ','5','.','0','0','\r','\n',0};
write_file(hFile, header);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment