http://bugs.winehq.org/show_bug.cgi?id=51294
Andrew Nguyen arethusa26@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |INVALID
--- Comment #1 from Andrew Nguyen arethusa26@gmail.com --- There is no problem with the code snippet that I see. The ARRAY_SIZE(g_pos_names[col]) expressions would expand to (sizeof(g_pos_names[col]) / sizeof((g_pos_names[col])[0])), and sizeof is evaluated based only on the type of the supplied expressions, so there is no "access" of the col variable involved there.