We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03bbf9a commit edb62c1Copy full SHA for edb62c1
neo/framework/File.cpp
@@ -1406,15 +1406,15 @@ int idFile_Permanent::Write( const void* buffer, int len )
1406
return 0;
1407
}
1408
1409
+ buf = ( byte* )buffer;
1410
+
1411
// Chillax
1412
if( buf == NULL )
1413
{
1414
common->Printf( "idFile_Permanent::Write: buffer is null, 0 bytes written to %s\n", name.c_str() );
1415
1416
1417
- buf = ( byte* )buffer;
-
1418
remaining = len;
1419
tries = 0;
1420
while( remaining )
0 commit comments