aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/util/piglit-framework-cl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/util/piglit-framework-cl.c b/tests/util/piglit-framework-cl.c
index deddc8d0..4435bf74 100644
--- a/tests/util/piglit-framework-cl.c
+++ b/tests/util/piglit-framework-cl.c
@@ -84,9 +84,10 @@ print_test_info(const struct piglit_cl_test_config_header* config,
bool check_platform_extensions(cl_platform_id platform_id, char* extensions)
{
- char* pch;
+ char* pch=NULL;
- pch = strtok(extensions, " ");
+ if (extensions)
+ pch = strtok(extensions, " ");
while(pch != NULL) {
if( strlen(pch) > 0
&& !piglit_cl_is_platform_extension_supported(platform_id, pch)) {