Re-add missing braces from previous commit

This commit is contained in:
Ryan Collins 2015-03-25 16:38:32 -04:00
parent e6f834f11b
commit 90b84ab632
1 changed files with 2 additions and 0 deletions

View File

@ -526,7 +526,9 @@ void CLanguage::LoadCurrentStrings ( bool ShowSelectDialog )
//Process the file //Process the file
FILE *file = fopen(Filename.c_str(), "rb"); FILE *file = fopen(Filename.c_str(), "rb");
if (file == NULL) if (file == NULL)
{
return; return;
}
//Search for utf8 file marker //Search for utf8 file marker
BYTE utf_bom[3]; BYTE utf_bom[3];