Browse Source

Fix unintentionally deleted param

Ben Payne 10 years ago
parent
commit
d669eb6ee7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/source/platformWin32/winFileio.cpp

+ 1 - 1
Engine/source/platformWin32/winFileio.cpp

@@ -1216,7 +1216,7 @@ void Platform::getVolumeInformationList( Vector<VolumeInformation>& out_rVolumeI
             convertUTF16toUTF8( lpszFileSystem, buf );
             info.FileSystem = StringTable->insert( buf );
 
-            convertUTF16toUTF8( lpszVolumeName );
+            convertUTF16toUTF8( lpszVolumeName, buf );
             info.Name = StringTable->insert( buf );
 #else
             info.FileSystem = StringTable->insert( lpszFileSystem );