<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Oct 20, 2015 at 8:49 AM, Marek Olšák <span dir="ltr"><<a href="mailto:maraeo@gmail.com" target="_blank">maraeo@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Tue, Oct 20, 2015 at 12:44 AM, Nanley Chery <<a href="mailto:nanleychery@gmail.com">nanleychery@gmail.com</a>> wrote:<br>
> From: Nanley Chery <<a href="mailto:nanley.g.chery@intel.com">nanley.g.chery@intel.com</a>><br>
><br>
> Aside from those modified in this commit, all gl_extensions structs are<br>
> zero-initialized by default. There is therefore no need to memset the<br>
> structs to 0. Also, remove the open-coded memset in<br>
> _mesa_init_extensions().<br>
><br>
> Signed-off-by: Nanley Chery <<a href="mailto:nanley.g.chery@intel.com">nanley.g.chery@intel.com</a>><br>
> ---<br>
>  src/mesa/main/extensions.c | 18 ++++--------------<br>
>  1 file changed, 4 insertions(+), 14 deletions(-)<br>
><br>
> diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c<br>
> index 365e7ed..6cd2b27 100644<br>
> --- a/src/mesa/main/extensions.c<br>
> +++ b/src/mesa/main/extensions.c<br>
> @@ -37,8 +37,8 @@<br>
>  #include "macros.h"<br>
>  #include "mtypes.h"<br>
><br>
> -struct gl_extensions _mesa_extension_override_enables;<br>
> -struct gl_extensions _mesa_extension_override_disables;<br>
> +struct gl_extensions _mesa_extension_override_enables = {0};<br>
> +struct gl_extensions _mesa_extension_override_disables = {0};<br>
<br>
</span>This looks good. Note that global variables are always<br>
zero-initialized, thus the initializer is useless there. This hunk<br>
could be dropped, but it's not a big deal.<br>
<span class="HOEnZb"><font color="#888888"><br></font></span></blockquote><div><br></div><div>Thanks for the feedback. My git comment incorrectly says that<br>those two variables are not zero-initialized. So I'll have to drop<br></div><div>this hunk and update the comment.<br></div><div><br></div><div>Nanley <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="HOEnZb"><font color="#888888">
Marek<br>
</font></span></blockquote></div><br></div></div>