<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: GMA 4500MHD memory corruption in SetPixelFormat(...) in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878320#M9098</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;I'm watching this thread everyday with hope that someone could answer my question but without success yet. This bug is showstopprt for me because I can't code anything.&lt;/P&gt;
&lt;P&gt;Please if someone could give me some contacts to someone responsible I would be VERY greatfull.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks for reading&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Trigve&lt;/P&gt;</description>
    <pubDate>Sat, 11 Oct 2008 08:07:45 GMT</pubDate>
    <dc:creator>trigve</dc:creator>
    <dc:date>2008-10-11T08:07:45Z</dc:date>
    <item>
      <title>GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878319#M9097</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm using Intel GMA 4500MHD with 6.14.10.4990 drivers (with Asus F6A) with Visual studio 2005 SP1 and Windows XP SP3. When using basic opengl initialization code, VS informs me that memory heap was modified after it was freed:&lt;/P&gt;
&lt;P&gt;
&lt;PRE&gt;[cpp]HEAP[enum.exe]: HEAP: Free Heap block 1baf28 modified at 1bb0a8 after it was freed
Windows has triggered a breakpoint in enum.exe.

This may be due to a corruption of the heap, and indicates a bug in enum.exe or any of the DLLs it has loaded.

The output window may have more diagnostic information[/cpp]&lt;/PRE&gt;
&lt;/P&gt;
&lt;P&gt;The error occurs when executing the DestroyWindow(hwnd); statement (see below). Also note that when I comment SetPixelFormat(hdc, format, &amp;amp;pfd); line, the memory corruption doesn't apply.&lt;/P&gt;
&lt;P&gt;Here is the code:&lt;/P&gt;
&lt;P&gt;
&lt;PRE&gt;[cpp]#ifndef _WIN32_WINNT
#	define _WIN32_WINNT 0x0501
#endif
#include &lt;WINDOWS.H&gt;

LRESULT __stdcall dummyWndProc(HWND hwnd, UINT umsg, WPARAM wp, LPARAM lp)
{
    return DefWindowProc(hwnd, umsg, wp, lp);
}

int main(int argc, char* argv[])
{

	LPCSTR dummyText = "WglDummy";

	HINSTANCE hinst = GetModuleHandle( NULL );



	WNDCLASS dummyClass;

	memset(&amp;amp;dummyClass, 0, sizeof(WNDCLASS));

	dummyClass.style = CS_OWNDC;

	dummyClass.hInstance = hinst;

	dummyClass.lpfnWndProc = &amp;amp;dummyWndProc;

	dummyClass.lpszClassName = dummyText;

	RegisterClass(&amp;amp;dummyClass);



	HWND hwnd = CreateWindow(dummyText, dummyText,

		WS_CLIPCHILDREN | WS_CLIPSIBLINGS,

		0, 0, 32, 32, 0, 0, hinst, 0);

	// if a simple CreateWindow fails, then boy are we in trouble...

	if (hwnd == NULL)

		throw 1;

	// no chance of failure and no need to release thanks to CS_OWNDC

	HDC hdc = GetDC(hwnd); 

	// assign a simple OpenGL pixel format that everyone supports

	PIXELFORMATDESCRIPTOR pfd = { 

		sizeof(PIXELFORMATDESCRIPTOR),   // size of this pfd 

		1,                     // version number 

		PFD_DRAW_TO_WINDOW |   // support window 

		PFD_SUPPORT_OPENGL |   // support OpenGL 

		PFD_DOUBLEBUFFER,      // double buffered 

		PFD_TYPE_RGBA,         // RGBA type 

		24,                    // 24-bit color depth 

		0, 0, 0, 0, 0, 0,      // color bits ignored 

		0,                     // no alpha buffer 

		0,                     // shift bit ignored 

		0,                     // no accumulation buffer 

		0, 0, 0, 0,            // accum bits ignored 

		32,                    // 32-bit z-buffer 

		0,                     // no stencil buffer 

		0,                     // no auxiliary buffer 

		PFD_MAIN_PLANE,        // main layer 

		0,                     // reserved 

		0, 0, 0                // layer masks ignored 

	}; 

	// if these fail, wglCreateContext will also quietly fail

	int format;

	if ((format = ChoosePixelFormat(hdc, &amp;amp;pfd)) != 0)

		SetPixelFormat(hdc, format, &amp;amp;pfd);

	// clean up our dummy window and class

	DestroyWindow(hwnd);

	UnregisterClass(dummyText, hinst);

	return 0;

}[/cpp]&lt;/WINDOWS.H&gt;&lt;/PRE&gt;
&lt;/P&gt;
&lt;P&gt;I have tried it debug and set the data breakpoint on the memory where the modifying occurs, and it looks like it is somewhere in the driver when calling SetPixelFormat(hdc, format, &amp;amp;pfd); and then in DestroyWindow(hwnd); (Here the memory is actually modified AFAICS; see the next call stack)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Here is call stack:&lt;/P&gt;
&lt;P&gt;
&lt;PRE&gt;[cpp]        ig4icd32.dll!089db303()
 	[Frames below may be incorrect and/or missing, no symbols loaded for ig4icd32.dll]
 	ig4icd32.dll!089db3be()
 	ig4icd32.dll!089db405()
 	ig4icd32.dll!08b8dc89()
 	ig4icd32.dll!08b8ec3d()
 	ntdll.dll!_RtlQueryEnvironmentVariable_U@12()  + 0x6d bytes
 	opengl32.dll!___DrvSetPixelFormat@12()  + 0x23 bytes
	opengl32.dll!_wglSetPixelFormat@12()  + 0x12d bytes
 	gdi32.dll!_SetPixelFormat@12()  + 0x37 bytes[/cpp]&lt;/PRE&gt;
&lt;/P&gt;
&lt;P&gt;Here is the call stack BEFORE Visual Studio pop up memory corruption error:&lt;/P&gt;
&lt;P&gt;
&lt;PRE&gt;[cpp]ig4icd32.dll!089db463()
 	[Frames below may be incorrect and/or missing, no symbols loaded for ig4icd32.dll]
 	ig4icd32.dll!08b8d68d()
 	ig4icd32.dll!08b90e79()
 	user32.dll!_DispatchHookA@16()  + 0x52 bytes
 	user32.dll!_fnHkINLPCWPSTRUCTA@20()  + 0x4f bytes
 	user32.dll!___fnDWORD@4()  + 0x24 bytes
 	ntdll.dll!_KiUserCallbackDispatcher@12()  + 0x13 bytes
 	user32.dll!_NtUserDestroyWindow@4()  + 0xc bytes[/cpp]&lt;/PRE&gt;
&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Here is memory dump (notice the 'ED' value at address 0x001BB0A8 that was modified after this block was freed):&lt;/P&gt;
&lt;P&gt;0x001BB0A8 ed fe ee fe ee fe ee fe ee fe ee fe ee fe ee fe ee fe&lt;/P&gt;
&lt;P&gt;Anyone know where the problem could be?&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;Trigve&lt;/P&gt;
&lt;P&gt;/edit: Added more info&lt;/P&gt;</description>
      <pubDate>Sat, 27 Sep 2008 08:29:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878319#M9097</guid>
      <dc:creator>trigve</dc:creator>
      <dc:date>2008-09-27T08:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878320#M9098</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;I'm watching this thread everyday with hope that someone could answer my question but without success yet. This bug is showstopprt for me because I can't code anything.&lt;/P&gt;
&lt;P&gt;Please if someone could give me some contacts to someone responsible I would be VERY greatfull.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks for reading&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Trigve&lt;/P&gt;</description>
      <pubDate>Sat, 11 Oct 2008 08:07:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878320#M9098</guid>
      <dc:creator>trigve</dc:creator>
      <dc:date>2008-10-11T08:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878321#M9099</link>
      <description>&lt;DIV style="margin:0px;"&gt;Trigve,&lt;/DIV&gt;
&lt;P&gt;What isthe latest driver version you have tested? Memory-related OpenGL bugs have been identified recently, and an upcoming fix may solve the issue you are seeing. Look for next week's driver update and try it. Also, if you could post a really simple Visual Studio project we can compile and test, it may help.&lt;/P&gt;
&lt;P&gt;- Eric&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2008 00:48:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878321#M9099</guid>
      <dc:creator>Eric_P_Intel</dc:creator>
      <dc:date>2008-11-01T00:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878322#M9100</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334321"&gt;Eric Palmer (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;Trigve,&lt;/DIV&gt;
&lt;P&gt;What isthe latest driver version you have tested? Memory-related OpenGL bugs have been identified recently, and an upcoming fix may solve the issue you are seeing. Look for next week's driver update and try it. Also, if you could post a really simple Visual Studio project we can compile and test, it may help.&lt;/P&gt;
&lt;P&gt;- Eric&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;Hi Eric,&lt;/P&gt;
&lt;P&gt;thanks for reply. The latest drivers I've tried were 6.14.10.4990. As of mid october I've installed vista bussiness (with a some sort of &lt;SPAN class="vcb_lt"&gt;malevolence&lt;/SPAN&gt;) because I wasn't able to code any OGL stuff. So I can't try the new drivers. sorry.&lt;/P&gt;
&lt;P&gt;But I'm sending you the visual studio files. Hope it helps&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Trigve&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2008 13:15:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878322#M9100</guid>
      <dc:creator>trigve</dc:creator>
      <dc:date>2008-11-04T13:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878323#M9101</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;So I've found that the currently most recent drivers for vista (from 3. november) are causing the same memory corruption. Here is info report from intel utility:&lt;/P&gt;
&lt;P&gt;Report Date:  11/16/2008&lt;BR /&gt;Report Time[hr:mm:ss]: 18:41:21&lt;BR /&gt;Driver Version:  7.15.10.1591&lt;BR /&gt;Operating System:  Windows Vista  Business* , Service Pack 1 (6.0.6001)&lt;BR /&gt;Default Language:  Slovak&lt;BR /&gt;DirectX* Version:  10.0&lt;BR /&gt;Physical Memory:  3036 MB&lt;BR /&gt;Minimum Graphics Memory: 32 MB&lt;BR /&gt;Maximum Graphics Memory: 1294 MB&lt;BR /&gt;Graphics Memory in Use: 103 MB&lt;BR /&gt;Processor:  x86 family 6 Model 23 Stepping 6&lt;BR /&gt;Processor Speed:  2261 MHZ&lt;BR /&gt;Vendor ID:  8086&lt;BR /&gt;Device ID:  2A42&lt;BR /&gt;Device Revision:  07&lt;/P&gt;
&lt;P&gt;The drivers from notebook's driver CD are working good (version: 7.15.10.1508)&lt;/P&gt;
&lt;P&gt;Trigve&lt;/P&gt;</description>
      <pubDate>Sun, 16 Nov 2008 17:47:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878323#M9101</guid>
      <dc:creator>trigve</dc:creator>
      <dc:date>2008-11-16T17:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878324#M9102</link>
      <description>So I've updated once more to the most recent drivers and it is still the same behaviour (memory corruption).&lt;BR /&gt;&lt;BR /&gt;Report Date:		03/29/2009&lt;BR /&gt;Report Time[hr:mm:ss]:	13:34:57&lt;BR /&gt;Driver Version:		7.15.10.1659&lt;BR /&gt;Operating System:		Windows Vista  Business* , Service Pack 1 (6.0.6001)&lt;BR /&gt;Default Language:		Slovak&lt;BR /&gt;DirectX* Version:		10.0&lt;BR /&gt;Physical Memory:		3036 MB&lt;BR /&gt;Minimum Graphics Memory:	32 MB&lt;BR /&gt;Maximum Graphics Memory:	1294 MB&lt;BR /&gt;Graphics Memory in Use:	103 MB&lt;BR /&gt;Processor:		x86 family 6 Model 23 Stepping 6&lt;BR /&gt;Processor Speed:		2261 MHZ&lt;BR /&gt;Vendor ID:		8086&lt;BR /&gt;Device ID:		2A42&lt;BR /&gt;Device Revision:		07&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;*   Accelerator Information   *&lt;BR /&gt;&lt;BR /&gt;Accelerator in Use:		Mobile Intel 4 Series Express Chipset Family&lt;BR /&gt;Video BIOS:		1654.0&lt;BR /&gt;Current Graphics Mode:	1680 podla 1050 True Color (60 Hz)&lt;BR /&gt;&lt;BR /&gt; I want to ask once more where can I report this kind of errors without ignoring it?&lt;BR /&gt;&lt;BR /&gt;thanks Trigve&lt;BR /&gt;</description>
      <pubDate>Sun, 29 Mar 2009 11:36:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878324#M9102</guid>
      <dc:creator>trigve</dc:creator>
      <dc:date>2009-03-29T11:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878325#M9103</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/404776"&gt;trigve&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;So I've updated once more to the most recent drivers and it is still the same behaviour (memory corruption).&lt;BR /&gt;&lt;BR /&gt;Report Date: 03/29/2009&lt;BR /&gt;Report Time[hr:mm:ss]: 13:34:57&lt;BR /&gt;Driver Version: 7.15.10.1659&lt;BR /&gt;Operating System: Windows Vista  Business* , Service Pack 1 (6.0.6001)&lt;BR /&gt;Default Language: Slovak&lt;BR /&gt;DirectX* Version: 10.0&lt;BR /&gt;Physical Memory: 3036 MB&lt;BR /&gt;Minimum Graphics Memory: 32 MB&lt;BR /&gt;Maximum Graphics Memory: 1294 MB&lt;BR /&gt;Graphics Memory in Use: 103 MB&lt;BR /&gt;Processor: x86 family 6 Model 23 Stepping 6&lt;BR /&gt;Processor Speed: 2261 MHZ&lt;BR /&gt;Vendor ID: 8086&lt;BR /&gt;Device ID: 2A42&lt;BR /&gt;Device Revision: 07&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;* Accelerator Information *&lt;BR /&gt;&lt;BR /&gt;Accelerator in Use: Mobile Intel 4 Series Express Chipset Family&lt;BR /&gt;Video BIOS: 1654.0&lt;BR /&gt;Current Graphics Mode: 1680 podla 1050 True Color (60 Hz)&lt;BR /&gt;&lt;BR /&gt;I want to ask once more where can I report this kind of errors without ignoring it?&lt;BR /&gt;&lt;BR /&gt;thanks Trigve&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I'll uplevel this as a bug with your test case to our driver bug. Stay tuned.</description>
      <pubDate>Thu, 02 Apr 2009 17:50:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878325#M9103</guid>
      <dc:creator>Chuck_De_Sylva</dc:creator>
      <dc:date>2009-04-02T17:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878326#M9104</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334073"&gt;Chuck De Sylva (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;I'll uplevel this as a bug with your test case to our driver bug. Stay tuned.&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Thanks for reply,&lt;BR /&gt;I'm glad to hear this. I'll be happy to help with it if needed.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;Trigve&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Apr 2009 09:11:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878326#M9104</guid>
      <dc:creator>trigve</dc:creator>
      <dc:date>2009-04-03T09:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878327#M9105</link>
      <description>Hi,&lt;BR /&gt;I've updated to the newest drivers (7.15.10.1688) and now it looks like that this bug has been fixed. But the one has appeared so I start the new thread for the new one.&lt;BR /&gt;&lt;BR /&gt;Thanks for all and everyone that helped&lt;BR /&gt;&lt;BR /&gt;Trigve&lt;BR /&gt;&lt;BR /&gt;edit: I've tried to revert to old drivers to see if it was really bad driver that cause the bug. Unfortunately I'm bit confused now. Drivers that was exhibiting the bug  now work ok. What I think now is that there was some bug in system and that some update that I've previously installed has fixed it. I also think that drivers has some code that triggers the bug or there was also some bug in drivers that was only tied to particular system configuration.&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Jul 2009 09:34:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878327#M9105</guid>
      <dc:creator>trigve</dc:creator>
      <dc:date>2009-07-01T09:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878328#M9106</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/404776"&gt;trigve&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Hi,&lt;BR /&gt;I've updated to the newest drivers (7.15.10.1688) and now it looks like that this bug has been fixed. But the one has appeared so I start the new thread for the new one.&lt;BR /&gt;&lt;BR /&gt;Thanks for all and everyone that helped&lt;BR /&gt;&lt;BR /&gt;Trigve&lt;BR /&gt;&lt;BR /&gt;edit: I've tried to revert to old drivers to see if it was really bad driver that cause the bug. Unfortunately I'm bit confused now. Drivers that was exhibiting the bug now work ok. What I think now is that there was some bug in system and that some update that I've previously installed has fixed it. I also think that drivers has some code that triggers the bug or there was also some bug in drivers that was only tied to particular system configuration.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I also have this problem, with an IBM X61 and a GM965 Express Family chipset.&lt;BR /&gt;Do you have any new drivers solving the issue for this model ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Sep 2009 15:21:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878328#M9106</guid>
      <dc:creator>cezardamian</dc:creator>
      <dc:date>2009-09-28T15:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878329#M9107</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/445084"&gt;cezardamian&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I also have this problem, with an IBM X61 and a GM965 Express Family chipset.&lt;BR /&gt;Do you have any new drivers solving the issue for this model ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi,&lt;BR /&gt;only driver that works for me is the one shipped on driver DVD. But as I wrote this bug "suddenly disappeared" (in fact it was probably "moved" to some other code, seehttp://software.intel.com/en-us/forums/showthread.php?t=66670) after some Vista update.&lt;BR /&gt;&lt;BR /&gt;Trigve&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Sep 2009 12:54:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878329#M9107</guid>
      <dc:creator>trigve</dc:creator>
      <dc:date>2009-09-30T12:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878330#M9108</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Unrelated to the bug -- you might want to read this:&lt;BR /&gt;&lt;A href="http://blogs.msdn.com/oldnewthing/archive/2006/06/01/612970.aspx" target="_blank"&gt;http://blogs.msdn.com/oldnewthing/archive/2006/06/01/612970.aspx&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Using CS_OWNDC seems not to be a good idea.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Oct 2009 00:32:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878330#M9108</guid>
      <dc:creator>levicki</dc:creator>
      <dc:date>2009-10-01T00:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878331#M9109</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/61352"&gt;Igor Levicki&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Unrelated to the bug -- you might want to read this:&lt;BR /&gt;&lt;A href="http://blogs.msdn.com/oldnewthing/archive/2006/06/01/612970.aspx" target="_blank"&gt;http://blogs.msdn.com/oldnewthing/archive/2006/06/01/612970.aspx&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Using CS_OWNDC seems not to be a good idea.&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;It's not a bug. It's just error coding.</description>
      <pubDate>Sat, 24 Oct 2009 14:53:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878331#M9109</guid>
      <dc:creator>depnaker</dc:creator>
      <dc:date>2009-10-24T14:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: GMA 4500MHD memory corruption in SetPixelFormat(...)</title>
      <link>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878332#M9110</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/449002"&gt;depnaker&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;It's not a bug. It's just error coding.&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I also have this problem</description>
      <pubDate>Mon, 26 Oct 2009 07:52:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/GMA-4500MHD-memory-corruption-in-SetPixelFormat/m-p/878332#M9110</guid>
      <dc:creator>avensue</dc:creator>
      <dc:date>2009-10-26T07:52:48Z</dc:date>
    </item>
  </channel>
</rss>

