Fixed crash in BVHDecoder - ReadBytesUntilNull was reading until newline instead of null
Fixed crash in PrimMesher - Profile::Copy was not copying correctly Fixed crash in PrmiMesher - SculptMap::ScaleImage was disposing live SKBitmap's
This commit is contained in:
@@ -181,7 +181,7 @@ namespace OpenMetaverse
|
||||
for (var j = i; j < data.Length; j++)
|
||||
{
|
||||
char spot = Convert.ToChar(data[j]);
|
||||
if (spot == '\n')
|
||||
if (spot == '\0')
|
||||
{
|
||||
endpos = j;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user