diff options
author | 2011-01-16 14:54:28 -0800 | |
---|---|---|
committer | 2011-01-16 16:11:42 -0800 | |
commit | 300406abd4a1e96d18d2a6486b3e41ddd3cee8b4 (patch) | |
tree | c3a819319b64dd4dbdcdb194894427d0a79e7df9 /libs/rs/rsThreadIO.cpp | |
parent | 981df1d9931c1bd48dbb735437823b92db51e1a1 (diff) |
Add some error checking.
Change-Id: I007b1429a64b39ffd5cdef200c295d5a31f95048
Diffstat (limited to 'libs/rs/rsThreadIO.cpp')
-rw-r--r-- | libs/rs/rsThreadIO.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/rs/rsThreadIO.cpp b/libs/rs/rsThreadIO.cpp index 1c6c5ac426bb..001ac5529e20 100644 --- a/libs/rs/rsThreadIO.cpp +++ b/libs/rs/rsThreadIO.cpp @@ -53,6 +53,10 @@ bool ThreadIO::playCoreCommands(Context *con, bool waitForCommand) { waitForCommand = false; //LOGV("playCoreCommands 3 %i %i", cmdID, cmdSize); + if (cmdID >= (sizeof(gPlaybackFuncs) / sizeof(void *))) { + rsAssert(cmdID < (sizeof(gPlaybackFuncs) / sizeof(void *))); + LOGE("playCoreCommands error con %p, cmd %i", con, cmdID); + } gPlaybackFuncs[cmdID](con, data); mToCore.next(); } |