<?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: Metro Exodus - c0000005 - memory access violation crash after 20 hour? in Mobile and Desktop Processors</title>
    <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599321#M33150</link>
    <description>&lt;P&gt;Somebody said that this is caused by XMP profile enabled. So its the cause or just game code buggy?&lt;/P&gt;</description>
    <pubDate>Thu, 06 Feb 2020 02:48:35 GMT</pubDate>
    <dc:creator>SLitw</dc:creator>
    <dc:date>2020-02-06T02:48:35Z</dc:date>
    <item>
      <title>Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599309#M33138</link>
      <description>&lt;P&gt;Monitor:AORUS AD27QD&lt;/P&gt;&lt;P&gt;Cpu: i7-9900K stock 4.7 with Noctua NH-D15&lt;/P&gt;&lt;P&gt;Gpu: Rtx 2080 Ti Aorus Xtreme Waterforce ( stock no oc,temps max 63C on load )&lt;/P&gt;&lt;P&gt;Ram: 32gb 2x16 GB DDR4 GSKILL 3000MHZ XMP&lt;/P&gt;&lt;P&gt;Psu: Seasonic Ultra Prime Titanium 850W&lt;/P&gt;&lt;P&gt;mobo: Asus Prime Z390-A&lt;/P&gt;&lt;P&gt;SSD: Crucial 1TBHDD: WB BLUE 1 TB&lt;/P&gt;&lt;P&gt;Case: Cooler Master Cosmos C700P&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello. I have a question. I left running Metro Exodus for hours ,when i go to work. When i back after 21 hours i see it crashed exactly on 20 hour in running. I left running game in EPISODE:DESERT ( 3 ).&lt;/P&gt;&lt;P&gt;Crash is something about c0000005 - memory access violation.&lt;/P&gt;&lt;P&gt;NULL POINTER WRITE.&lt;/P&gt;&lt;P&gt;Not driver crash. Event log nothing about driver crash. Just BUGTRAP crash.&lt;/P&gt;&lt;P&gt;Screen from debugger:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="mm2.jpg"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/898i728A5F5F0F778DC6/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="mm2.jpg" alt="mm2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="mm.jpg"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/899iA3A3A4671791F05F/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="mm.jpg" alt="mm.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is my hardware ok? I dont have any crashes in other games or benches. Realbench passing too ,memtest no errors. I am on newest nvidia drivers.Using MSI AFTERBURNER + RTSS.﻿&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2020 04:56:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599309#M33138</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-01T04:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599310#M33139</link>
      <description>&lt;P&gt;I think your hardware is just fine. I believe that this is a software bug.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While there are other possibilities, the most likely scenario is that a memory allocation operation failed -- but the invoking code did not check to see if a failure occurred -- so the NULL pointer returned in these cases was then used as the destination for a memory copy operation. I have seen this time and again in poorly-written C code. I have also seen it in C++ code where the writer simply assumes that an automatic memory allocation operation cannot fail (for example, an object is declared on the stack of a subroutine and the instance of the object is supposed to be automatically created (allocated) when this subroutine is invoked) when, in fact, this is *&lt;B&gt;always&lt;/B&gt;* a possibility.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next, let's talk about where this error is occurring. It looks like a worker thread within Metro Exodus has made a call down into the NVIDIA PhysX libraries to a function named NvHairWorks_Create() and the error occurred when this function invoked Standard C Library function memcpy(). Of course, this function is just where the error was detected - where the bad (NULL) pointer was used as destination for the memory copy operation. It is unclear whether the bad memory allocation operation occurred within this function or within the code that invoked this function. Again, this is just my take on the most likely scenario. Other possibility is a software bug that somehow loads a NULL pointer into the variable passed to memcpy().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To be honest, I am not surprised that this kind of error is occurring after 20 hours of operation. If it follows my scenario, this software probably has a small memory leak somewhere in regularly-executed code and it takes this long for the amount of memory leaked in total to build to the point where a memory allocation could fail. Someone didn't test their code for long enough!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your task now is to communicate with the developers of Metro Exodus and have them look into the error. If it turns out that the bug is in the NVIDIA PhysX code (which I rather doubt but it is always a possibility), it would be the responsibility of Metro Exodus to inform NVIDIA.&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2020 07:02:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599310#M33139</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-01T07:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599311#M33140</link>
      <description>&lt;P&gt;OK happened again ( second time ) but this time after 12 hour, the same crash. Crashdumps are in Metro Exodus save games folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i tested memtest86,RAMTEST,REALBENCH and no issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Only in Metro Exodus this happen on chapter 3 DESERT. No in other games.Other games i can run 24h no crash.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So no worries?&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2020 23:27:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599311#M33140</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-01T23:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599312#M33141</link>
      <description>&lt;P&gt;Well, this points to the issue being within the Metro Exodus game itself (as opposed to the underlying NVIDIA PhysX libraries), so no worries from the standpoint of your hardware. You do need to contact the Metro Exodus folks to let them know about this issue. Who knows, they may already have a fix for this issue and can provide you with an updated version to try...&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;</description>
      <pubDate>Sun, 02 Feb 2020 06:37:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599312#M33141</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-02T06:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599313#M33142</link>
      <description>&lt;P&gt;Hello. Thank you for reply. Somebody from other forum said to me this:"I'm a pro developer. Nothing should crash or OOM if left for 24 hours."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i think he is not right?&lt;/P&gt;</description>
      <pubDate>Sun, 02 Feb 2020 08:37:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599313#M33142</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-02T08:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599314#M33143</link>
      <description>&lt;P&gt;I have 40 years of experience, so I outrank him.​ 😋&lt;/P&gt;</description>
      <pubDate>Sun, 02 Feb 2020 08:59:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599314#M33143</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-02T08:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599315#M33144</link>
      <description>&lt;P&gt;OK happened again but this time after 30 hours. Crashdumps are in Metro Exodus save games folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Crash is something about c0000005 - memory access violation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NULL POINTER WRITE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not driver crash. Event log nothing about driver crash. Just BUGTRAP crash.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So propably game bug?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i tested memtest86,RAMTEST,REALBENCH and no issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No in other games.Other games i can run 24h no crash.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 16:42:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599315#M33144</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-03T16:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599316#M33145</link>
      <description>&lt;P&gt;Yes, it's a bug in the game. Send these dumps to the Metro Exodus team for analysis.&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 16:56:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599316#M33145</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-03T16:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599317#M33146</link>
      <description>&lt;P&gt;Somebody said this to me :"any game should not be crash no matter how long you play or idle..."&lt;/P&gt;&lt;P&gt;And he tell me that is hardware. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So he is right or not?:)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But like i said,it happens only in Metro Exodus after 12-30 hours it will sometimes crash with this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 19:18:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599317#M33146</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-03T19:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599318#M33147</link>
      <description>&lt;P&gt;Hello SLitw&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for posting on the Intel® communities.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We found that you have another thread where you are describing issues with Metro Exodus Game*. The original thread link is the following:&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.intel.com/s/question/0D50P00004YP2g1"&gt;https://forums.intel.com/s/question/0D50P00004YP2g1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this case, we kindly recommend you to continue the support through the original thread in order to avoid duplication of effort.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew G.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;P&gt;A Contingent Worker at Intel&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 04:06:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599318#M33147</guid>
      <dc:creator>AndrewG_Intel</dc:creator>
      <dc:date>2020-02-04T04:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599319#M33148</link>
      <description>&lt;P&gt;I don't believe it's a hardware problem. This guy's comment has nothing to do with the reality of the situation - and I question his "experience" if he is making a blanket comment like this. If this was the case, you would be seeing problems while other programs were running. When it is consistently isolated to a single program like this, the hairy finger points at this program until it is proven to be something else. As I said, send the logs to the Metro Exodus developers and have them to do an analysis. They can look at the source code and trace back to where the NULL pointers came from.&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 04:09:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599319#M33148</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-04T04:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599320#M33149</link>
      <description>&lt;P&gt;Last question. Somebody said that this is because my memory is on XMP profile. Trust him or just trust to you mr scott pearson :)?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 01:55:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599320#M33149</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-06T01:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599321#M33150</link>
      <description>&lt;P&gt;Somebody said that this is caused by XMP profile enabled. So its the cause or just game code buggy?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 02:48:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599321#M33150</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-06T02:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599322#M33151</link>
      <description>&lt;P&gt;Well, he is not right - but nor is he completely wrong. If you are running on an XMP profile, you may be running the memory buses at higher frequencies than the processor was designed and validated to maintain. If this is the case, you are technically overclocking the processor and, as we know, Intel does not guarantee operation at these frequencies. Seeing a failure like you are, which is only occurring in Metro Exodus, is simply too specific to be the result of memory failures caused by higher-than-sustainable memory bus frequencies. You would be seeing other errors, system lockups and even spontaneous system reboots in this case. Bottom line, while part of what he is saying is rooted in reality, I believe the rest is not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Look, the proof is in the pudding. Go into BIOS Setup, turn off support for XMP profiles and then run your game test again. It will either fix the issue (which I doubt) or it won't.&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 08:41:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599322#M33151</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-06T08:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599323#M33152</link>
      <description>&lt;P&gt;Hey Mr scott pearson.&lt;/P&gt;&lt;P&gt;Yeah i had one spontaneous reboot after crash in Metro Exodus after 20 hours. Its my topic:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.intel.com/s/question/0D50P00004YP2g1/weird-crash-and-after-moment-system-restarted-on-9900k-and-2080-ti"&gt;https://forums.intel.com/s/question/0D50P00004YP2g1/weird-crash-and-after-moment-system-restarted-on-9900k-and-2080-ti&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you answer ? Is my ram faulty?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 18:00:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599323#M33152</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-07T18:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599324#M33153</link>
      <description>&lt;P&gt;If you are also seeing spontaneous reboots (which you have not mentioned before), then yes, ​you likely have bad DRAM (or a failure in your processor, but very unlikely).&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2020 01:26:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599324#M33153</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-08T01:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599325#M33154</link>
      <description>&lt;P&gt;No it happened once. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;After 21 hours, it crashed when i press ESC and then clicked EXIT TO MAIN MENU---&amp;gt;moment when GPU LOAD drops it crashed ,instead of EXIT TO MAIN MENU ofc.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;I get BLACK SCREEN and no monitor signal for 1 minute, and crash to desktop with TDR driver crash in event log. After that i log off from system and log back in again and system rebooted unexpected.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;But log from metro crash dumps was the same ,before reboot:&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;The same log:&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Crash was about c0000005 - memory access violation.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;NULL POINTER WRITE.&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Folder was created: Windows/livekernelreports/pow32kwatchdog.dmp&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If pc rebooted unexpectedly after crash no reason to worry about hardware? After crash i make CTRL ALT DELETE ,log out from system and log back in again, then pc crashed /rebooted. It happened once after 21 hours when i tried to exit to main menu. Thx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please answer to that two questions. Is hardware fine?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No have errors in Memtest86 or RAMTEST and no issues in benchmarks and games.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2020 02:47:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599325#M33154</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-08T02:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599326#M33155</link>
      <description>&lt;P&gt;Again, if you are also seeing spontaneous reboots (which you have not mentioned before), then yes, ​you likely have bad DRAM (or a failure in your processor, but very unlikely).&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2020 05:10:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599326#M33155</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-08T05:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599327#M33156</link>
      <description>&lt;P&gt;But i cant reproduce that reboot again. Also not have issues with other games and no errors in memtest86&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Found that file :&lt;/P&gt;&lt;P&gt;windows/livekernelreports/ pow32kwatchdog.dmp.&lt;/P&gt;&lt;P&gt;A callout to Win32k did not return promptly"&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2020 05:38:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599327#M33156</guid>
      <dc:creator>SLitw</dc:creator>
      <dc:date>2020-02-08T05:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Metro Exodus - c0000005 - memory access violation crash after 20 hour?</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599328#M33157</link>
      <description>&lt;P&gt;Look, we are going in circles here and I only have so much time available to help other folks. MemTest86 is not infallible; it does not catch all issues. Your best bet is to find someplace to borrow some compatible memory and test with it. If it does not exhibit the issue, then formally purchase replacement memory. Your local PC repair shop may be able to help you with this process for a small fee.&lt;/P&gt;&lt;P&gt;...S&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2020 06:12:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Metro-Exodus-c0000005-memory-access-violation-crash-after-20/m-p/599328#M33157</guid>
      <dc:creator>n_scott_pearson</dc:creator>
      <dc:date>2020-02-08T06:12:48Z</dc:date>
    </item>
  </channel>
</rss>

