Fix parsing of extension string

Previously the parsing found the next space and then added the the difference
between the current position and space to the set of tokens. This improperly
generated empty strings if there were consecutive spaces or if spaces existed at
the beginning or end of strings. To fix this, the parse is modified to use
simple stringstream parsing.

Bug: 22709246

Change-Id: I9e32c07bbf984eadccdadf1dc34437fa0c46088b
This commit is contained in:
Michael Lentine 2015-07-28 16:30:10 -07:00
parent 99426810e4
commit e2fc6f87be
1 changed files with 8 additions and 9 deletions

View File

@ -14,6 +14,9 @@
** limitations under the License.
*/
#include <string>
#include <sstream>
#include <ctype.h>
#include <stdint.h>
#include <stdlib.h>
@ -115,15 +118,11 @@ void egl_context_t::onMakeCurrent(EGLSurface draw, EGLSurface read) {
}
// tokenize the supported extensions for the glGetStringi() wrapper
exts = gl_extensions.string();
while (1) {
const char *end = strchr(exts, ' ');
if (end == NULL) {
tokenized_gl_extensions.push(String8(exts));
break;
}
tokenized_gl_extensions.push(String8(exts, end - exts));
exts = end + 1;
std::stringstream ss;
std::string str;
ss << gl_extensions.string();
while (ss >> str) {
tokenized_gl_extensions.push(String8(str.c_str()));
}
}
}