fix std::string constructed from nullptr

This commit is contained in:
Wolfgang Bumiller 2015-02-01 12:13:22 +01:00
parent 6d4539814e
commit fd0cc40b9c

View file

@ -1073,7 +1073,7 @@ ast_expression *fold::op_mul_vec(vec3_t vec, ast_value *sel, const char *set) {
if (!y && !z) {
ast_expression *out;
++opts_optimizationcount[OPTIM_VECTOR_COMPONENTS];
out = ast_member::make(ctx(), (ast_expression*)sel, set[0]-'x', nullptr);
out = ast_member::make(ctx(), (ast_expression*)sel, set[0]-'x', "");
out->m_keep_node = false;
((ast_member*)out)->m_rvalue = true;
if (x != -1.0f)