1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:57:35 +00:00

AK, LibGfx, LibGUI: Initialize various variables to zero.

The not initialized variables can lead to compiler warnings that
become errors with the -Werror flag.
This commit is contained in:
Emanuel Sprung 2020-02-23 01:32:00 +01:00 committed by Andreas Kling
parent cbf2881bf7
commit 074d935c6e
5 changed files with 10 additions and 10 deletions

View file

@ -352,7 +352,7 @@ const LogStream& operator<<(const LogStream& stream, Color value)
bool IPC::decode(BufferStream& stream, Color& color)
{
u32 rgba;
u32 rgba = 0;
stream >> rgba;
if (stream.handle_read_failure())
return false;

View file

@ -200,7 +200,7 @@ RefPtr<Gfx::Bitmap> load_gif_impl(const u8* data, size_t data_size)
if (sentinel == 0x2c) {
images.append(make<ImageDescriptor>());
auto& image = images.last();
u8 packed_fields;
u8 packed_fields { 0 };
stream >> image.x;
stream >> image.y;
stream >> image.width;

View file

@ -46,8 +46,8 @@ namespace IPC {
bool decode(BufferStream& stream, Gfx::Point& point)
{
int x;
int y;
int x = 0;
int y = 0;
stream >> x;
stream >> y;
if (stream.handle_read_failure())

View file

@ -46,8 +46,8 @@ namespace IPC {
bool decode(BufferStream& stream, Gfx::Size& size)
{
int width;
int height;
int width = 0;
int height = 0;
stream >> width;
stream >> height;
if (stream.handle_read_failure())