Merge pull request #2551 from signalwire/v8_move
[mod_v8] SayPhrase: Coverity 1546153 COPY_INSTEAD_OF_MOVE
This commit is contained in:
commit
c303c98539
|
@ -671,7 +671,7 @@ JS_SESSION_FUNCTION_IMPL(SayPhrase)
|
|||
String::Utf8Value str(info[2]);
|
||||
tmp = js_safe_str(*str);
|
||||
if (!zstr(tmp.c_str())) {
|
||||
phrase_lang = tmp;
|
||||
phrase_lang = std::move(tmp);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue