diff options
author | Eric Laurent <elaurent@google.com> | 2009-08-11 01:26:35 -0700 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2009-08-11 09:57:45 -0700 |
commit | c4e58c0f31c5044cfab0ffe80251df209844e9cc (patch) | |
tree | 743db3b43547b9fa50d4671ca75371f72f596b92 /media | |
parent | 6c30a71122a6ef2189304c136f13a87727804b0a (diff) | |
download | frameworks_base-c4e58c0f31c5044cfab0ffe80251df209844e9cc.zip frameworks_base-c4e58c0f31c5044cfab0ffe80251df209844e9cc.tar.gz frameworks_base-c4e58c0f31c5044cfab0ffe80251df209844e9cc.tar.bz2 |
Fix issue 2045983 ToneGenerator: fix void statement.
There is a void statement at line 917 of ToneGenerator.cpp: mState == TONE_IDLE;
This problem is harmless as in current code this execution path is never taken; it can only happen if a "new" operator fails in prepareWave() which is a case we usually consider as unlikely in android audio framework.
Diffstat (limited to 'media')
-rw-r--r-- | media/libmedia/ToneGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libmedia/ToneGenerator.cpp b/media/libmedia/ToneGenerator.cpp index 3ea64ae..799c349 100644 --- a/media/libmedia/ToneGenerator.cpp +++ b/media/libmedia/ToneGenerator.cpp @@ -914,7 +914,7 @@ bool ToneGenerator::startTone(int toneType) { } } } else { - mState == TONE_IDLE; + mState = TONE_IDLE; } } else { LOGV("Delayed start\n"); |