RE: Uninitialized static consts

2007-12-28 Thread Samuel Lidén Borell
The errors (I found some more now) occur when I run a program that I've made myself, so it could very well be bug in my program and not in Wine. Anyway, I've uploaded the Valgrind output and the source code of my program here: http://www.slbdata.se/hwcheck/wine/ fre 2007-12-28 klockan 08:57 -0

re: Uninitialized static consts

2007-12-28 Thread Dan Kegel
Samuel wrote: > I discovered a static constant wasn't initialized in RedrawWindow when I > was using Valgrind. I wonder if this is a problem or not, because it has > been there since 2005 and it doesn't give any compiler warnings. static vars are located in the bss section and are initialized to z

Re: Uninitialized static consts

2007-12-28 Thread Andrew Talbot
Samuel Lidén Borell wrote: > Hi, > > I discovered a static constant wasn't initialized in RedrawWindow when I > was using Valgrind. I wonder if this is a problem or not, because it has > been there since 2005 and it doesn't give any compiler warnings. AFAIK > constants can't be initialized later

Uninitialized static consts

2007-12-28 Thread Samuel Lidén Borell
Hi, I discovered a static constant wasn't initialized in RedrawWindow when I was using Valgrind. I wonder if this is a problem or not, because it has been there since 2005 and it doesn't give any compiler warnings. AFAIK constants can't be initialized later (unless they are pointers), so it seems