mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-04 00:42:05 +00:00
fix std::string constructed from nullptr
This commit is contained in:
parent
6d4539814e
commit
fd0cc40b9c
1 changed files with 1 additions and 1 deletions
2
fold.cpp
2
fold.cpp
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue