You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix some LGTM errors of "Multiplication result converted to larger type"
This commit is contained in:
@@ -117,14 +117,15 @@ Error AudioDriverJavaScript::init() {
|
||||
if (output_rb) {
|
||||
memdelete_arr(output_rb);
|
||||
}
|
||||
output_rb = memnew_arr(float, buffer_length *channel_count);
|
||||
const size_t array_size = buffer_length * (size_t)channel_count;
|
||||
output_rb = memnew_arr(float, array_size);
|
||||
if (!output_rb) {
|
||||
return ERR_OUT_OF_MEMORY;
|
||||
}
|
||||
if (input_rb) {
|
||||
memdelete_arr(input_rb);
|
||||
}
|
||||
input_rb = memnew_arr(float, buffer_length *channel_count);
|
||||
input_rb = memnew_arr(float, array_size);
|
||||
if (!input_rb) {
|
||||
return ERR_OUT_OF_MEMORY;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user