Переглянути джерело

Fixed V547: Expression is always false

'ov_read' function returns a signed long, that is stored in an unsigned integer 'bytesRead'. Comparsion 'bytesRead < 0' doesn't make sense, since an unsigned number >= 0.
Phillip Khandeliants 8 роки тому
батько
коміт
20e63ad763
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      Engine/source/sfx/media/sfxVorbisStream.cpp

+ 1 - 1
Engine/source/sfx/media/sfxVorbisStream.cpp

@@ -198,7 +198,7 @@ S32 SFXVorbisStream::read( U8 *buffer,
    // requests longer than this.
    const U32 MAXREAD = 4096;
 
-   U32 bytesRead = 0;
+   S64 bytesRead = 0;
    U32 offset = 0;
    U32 bytesToRead = 0;