2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fix for fCurPosition being uninitialized garbage

This commit is contained in:
2011-05-11 18:07:22 -04:00
parent 2bbf1f77f3
commit e59e3258c1

View File

@ -41,7 +41,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
plCachedFileReader::plCachedFileReader(const char *path, plCachedFileReader::plCachedFileReader(const char *path,
plAudioCore::ChannelSelect whichChan) plAudioCore::ChannelSelect whichChan)
: fFileHandle(nil) : fFileHandle(nil), fCurPosition(0)
{ {
hsAssert(path != nil, "Invalid path specified in plCachedFileReader"); hsAssert(path != nil, "Invalid path specified in plCachedFileReader");