Merge pull request #33583 from qarmin/fix_overflows_unitialized
Fix some overflows and unitialized variables
This commit is contained in:
commit
083d088de3
17 changed files with 35 additions and 8 deletions
|
@ -279,6 +279,7 @@ Ref<StreamPeer> PacketPeerStream::get_stream_peer() const {
|
|||
|
||||
void PacketPeerStream::set_input_buffer_max_size(int p_max_size) {
|
||||
|
||||
ERR_FAIL_COND_MSG(p_max_size < 0, "Max size of input buffer size cannot be smaller than 0.");
|
||||
//warning may lose packets
|
||||
ERR_FAIL_COND_MSG(ring_buffer.data_left(), "Buffer in use, resizing would cause loss of data.");
|
||||
ring_buffer.resize(nearest_shift(p_max_size + 4));
|
||||
|
|
|
@ -183,6 +183,10 @@ void CameraMatrix::set_orthogonal(real_t p_size, real_t p_aspect, real_t p_znear
|
|||
|
||||
void CameraMatrix::set_frustum(real_t p_left, real_t p_right, real_t p_bottom, real_t p_top, real_t p_near, real_t p_far) {
|
||||
|
||||
ERR_FAIL_COND(p_right <= p_left);
|
||||
ERR_FAIL_COND(p_top <= p_bottom);
|
||||
ERR_FAIL_COND(p_far <= p_near);
|
||||
|
||||
real_t *te = &matrix[0][0];
|
||||
real_t x = 2 * p_near / (p_right - p_left);
|
||||
real_t y = 2 * p_near / (p_top - p_bottom);
|
||||
|
|
|
@ -525,6 +525,8 @@ Error ProjectSettings::_load_settings_binary(const String &p_path) {
|
|||
set(key, value);
|
||||
}
|
||||
|
||||
f->close();
|
||||
memdelete(f);
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -174,6 +174,9 @@ inline void __swap_tmpl(T &x, T &y) {
|
|||
|
||||
static _FORCE_INLINE_ unsigned int next_power_of_2(unsigned int x) {
|
||||
|
||||
if (x == 0)
|
||||
return 0;
|
||||
|
||||
--x;
|
||||
x |= x >> 1;
|
||||
x |= x >> 2;
|
||||
|
|
|
@ -1416,7 +1416,7 @@ bool String::parse_utf8(const char *p_utf8, int p_len) {
|
|||
|
||||
if (skip == 0) {
|
||||
|
||||
uint8_t c = *ptrtmp;
|
||||
uint8_t c = *ptrtmp >= 0 ? *ptrtmp : uint8_t(256 + *ptrtmp);
|
||||
|
||||
/* Determine the number of characters in sequence */
|
||||
if ((c & 0x80) == 0)
|
||||
|
|
|
@ -766,6 +766,10 @@ void RasterizerCanvasGLES2::_canvas_item_render_commands(Item *p_item, Item *cur
|
|||
WARN_PRINT("NinePatch without texture not supported yet in GLES2 backend, skipping.");
|
||||
continue;
|
||||
}
|
||||
if (tex->width == 0 || tex->height == 0) {
|
||||
WARN_PRINT("Cannot set empty texture to NinePatch.");
|
||||
continue;
|
||||
}
|
||||
|
||||
Size2 texpixel_size(1.0 / tex->width, 1.0 / tex->height);
|
||||
|
||||
|
|
|
@ -119,6 +119,7 @@ private:
|
|||
bool ok;
|
||||
Version() {
|
||||
code_version = 0;
|
||||
frag_id = 0;
|
||||
ok = false;
|
||||
uniform_location = NULL;
|
||||
}
|
||||
|
|
|
@ -78,6 +78,9 @@ public:
|
|||
bool operator<(const PropertyDoc &p_prop) const {
|
||||
return name < p_prop.name;
|
||||
}
|
||||
PropertyDoc() {
|
||||
overridden = false;
|
||||
}
|
||||
};
|
||||
|
||||
struct ClassDoc {
|
||||
|
|
|
@ -177,7 +177,7 @@ String SectionedInspector::get_full_item_path(const String &p_item) {
|
|||
void SectionedInspector::edit(Object *p_object) {
|
||||
|
||||
if (!p_object) {
|
||||
obj = -1;
|
||||
obj = 0;
|
||||
sections->clear();
|
||||
|
||||
filter->set_edited(NULL);
|
||||
|
@ -308,7 +308,7 @@ EditorInspector *SectionedInspector::get_inspector() {
|
|||
}
|
||||
|
||||
SectionedInspector::SectionedInspector() :
|
||||
obj(-1),
|
||||
obj(0),
|
||||
sections(memnew(Tree)),
|
||||
filter(memnew(SectionedInspectorFilter)),
|
||||
inspector(memnew(EditorInspector)),
|
||||
|
|
|
@ -5269,6 +5269,8 @@ CanvasItemEditor::CanvasItemEditor(EditorNode *p_editor) {
|
|||
drag_to = Vector2();
|
||||
dragged_guide_pos = Point2();
|
||||
dragged_guide_index = -1;
|
||||
is_hovering_h_guide = false;
|
||||
is_hovering_v_guide = false;
|
||||
panning = false;
|
||||
pan_pressed = false;
|
||||
|
||||
|
|
|
@ -852,6 +852,7 @@ ScriptCreateDialog::ScriptCreateDialog() {
|
|||
hb->add_child(path_button);
|
||||
gc->add_child(memnew(Label(TTR("Path:"))));
|
||||
gc->add_child(hb);
|
||||
re_check_path = false;
|
||||
|
||||
/* Dialog Setup */
|
||||
|
||||
|
|
|
@ -2601,6 +2601,7 @@ ScriptEditorDebugger::ScriptEditorDebugger(EditorNode *p_editor) {
|
|||
p_editor->get_undo_redo()->set_method_notify_callback(_method_changeds, this);
|
||||
p_editor->get_undo_redo()->set_property_notify_callback(_property_changeds, this);
|
||||
live_debug = true;
|
||||
camera_override = OVERRIDE_NONE;
|
||||
last_path_id = false;
|
||||
error_count = 0;
|
||||
warning_count = 0;
|
||||
|
|
|
@ -1233,8 +1233,8 @@ void TileMap::_set_tile_data(const PoolVector<int> &p_data) {
|
|||
}
|
||||
#endif
|
||||
|
||||
int16_t x = decode_uint16(&local[0]);
|
||||
int16_t y = decode_uint16(&local[2]);
|
||||
uint16_t x = decode_uint16(&local[0]);
|
||||
uint16_t y = decode_uint16(&local[2]);
|
||||
uint32_t v = decode_uint32(&local[4]);
|
||||
bool flip_h = v & (1 << 29);
|
||||
bool flip_v = v & (1 << 30);
|
||||
|
|
|
@ -63,6 +63,8 @@ void Tween::_add_pending_command(StringName p_key, const Variant &p_arg1, const
|
|||
count = 2;
|
||||
else if (p_arg1.get_type() != Variant::NIL)
|
||||
count = 1;
|
||||
else
|
||||
count = 0;
|
||||
|
||||
// Add the specified arguments to the command
|
||||
// TODO: Make this a switch statement?
|
||||
|
|
|
@ -173,6 +173,8 @@ void Range::set_as_ratio(double p_value) {
|
|||
}
|
||||
double Range::get_as_ratio() const {
|
||||
|
||||
ERR_FAIL_COND_V_MSG(Math::is_equal_approx(get_max(), get_min()), 0.0, "Cannot get ratio when minimum and maximum value are equal.");
|
||||
|
||||
if (shared->exp_ratio && get_min() >= 0) {
|
||||
|
||||
double exp_min = get_min() == 0 ? 0.0 : Math::log(get_min()) / Math::log((double)2);
|
||||
|
|
|
@ -159,7 +159,7 @@ protected:
|
|||
//bind helpers
|
||||
Dictionary _get_range_config(int p_column) {
|
||||
Dictionary d;
|
||||
double min, max, step;
|
||||
double min = 0.0, max = 0.0, step = 0.0;
|
||||
get_range_config(p_column, min, max, step);
|
||||
d["min"] = min;
|
||||
d["max"] = max;
|
||||
|
|
|
@ -95,8 +95,8 @@ void AudioStreamPlaybackSample::do_resample(const Depth *p_src, AudioFrame *p_ds
|
|||
// this function will be compiled branchless by any decent compiler
|
||||
|
||||
int32_t final, final_r, next, next_r;
|
||||
while (amount--) {
|
||||
|
||||
while (amount) {
|
||||
amount--;
|
||||
int64_t pos = offset >> MIX_FRAC_BITS;
|
||||
if (is_stereo && !is_ima_adpcm)
|
||||
pos <<= 1;
|
||||
|
@ -444,6 +444,7 @@ int AudioStreamSample::get_loop_end() const {
|
|||
|
||||
void AudioStreamSample::set_mix_rate(int p_hz) {
|
||||
|
||||
ERR_FAIL_COND(p_hz == 0);
|
||||
mix_rate = p_hz;
|
||||
}
|
||||
int AudioStreamSample::get_mix_rate() const {
|
||||
|
|
Loading…
Reference in a new issue