diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/state_trackers/clover/tgsi/compiler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/clover/tgsi/compiler.cpp b/src/gallium/state_trackers/clover/tgsi/compiler.cpp index 54cb747e6fb..4d056668a22 100644 --- a/src/gallium/state_trackers/clover/tgsi/compiler.cpp +++ b/src/gallium/state_trackers/clover/tgsi/compiler.cpp @@ -97,6 +97,11 @@ namespace { module clover::compile_program_tgsi(const std::string &source, std::string &r_log) { const size_t body_pos = source.find("COMP\n"); + if (body_pos == std::string::npos) { + r_log = "invalid source"; + throw compile_error(); + } + const char *body = &source[body_pos]; module m; |