From: Emil Velikov Date: Thu, 19 Mar 2015 01:36:08 +0000 (+0000) Subject: egl: cut down static storage size for {Version,ClientAPI}String X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbaf22a998f89eb720a3995fa2216512deed5f76;p=mesa.git egl: cut down static storage size for {Version,ClientAPI}String Both seems to be excessively long, namely: ClientAPIString can get up-to 47 based on current code, while the name of the driver can dictate the length of the VersionString, currently it is around 11. Let's pad each to 100, rather than the current 1000. Signed-off-by: Emil Velikov Reviewed-by: Brian Paul --- diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index f8782f917c0..d7f5dbacde6 100644 --- a/src/egl/main/egldisplay.h +++ b/src/egl/main/egldisplay.h @@ -153,8 +153,8 @@ struct _egl_display _EGLExtensions Extensions; /**< Extensions supported */ /* these fields are derived from above */ - char VersionString[1000]; /**< EGL_VERSION */ - char ClientAPIsString[1000]; /**< EGL_CLIENT_APIS */ + char VersionString[100]; /**< EGL_VERSION */ + char ClientAPIsString[100]; /**< EGL_CLIENT_APIS */ char ExtensionsString[_EGL_MAX_EXTENSIONS_LEN]; /**< EGL_EXTENSIONS */ _EGLArray *Screens;