The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Memory Leak and Hardware Issue

    Discussion in 'Hardware Components and Aftermarket Upgrades' started by chrisliando, Sep 21, 2008.

  1. chrisliando

    chrisliando Notebook Consultant

    Reputations:
    0
    Messages:
    114
    Likes Received:
    0
    Trophy Points:
    30
    I have a DELL XPS M1530 w/ these specifications:

    Intel T9300
    4GB DDR2 RAM
    200GB 7200rpm harddrive
    GeForce 8600M GT 256MB DDR3
    Vista Ultimate

    I am programming Visual C++ using Visual Studio 2008.

    Sometimes I experience memory leaks detection.

    Is it ok for the hardware if I have any memory leaks?

    Or it is harmful? If it is harmful, what component does memory leaks affecting? Is it the physical RAM itself or what?

    Thank you very much.
     
  2. 72hundred

    72hundred Revolutions-Per-Millennia

    Reputations:
    392
    Messages:
    1,228
    Likes Received:
    0
    Trophy Points:
    55
    Finger print scanner has been seen before as a huge memory leaker...
     
  3. chrisliando

    chrisliando Notebook Consultant

    Reputations:
    0
    Messages:
    114
    Likes Received:
    0
    Trophy Points:
    30
    No, the memory leaks was caused by the mistake of the program code developed. Sometimes I missed the part to delete the object of the class so the memory allocated for the object might has not been released yet.

    I just worried about if it would affecting the hardware.

    But anyway does the integrated fingerprint scanner in DELL laptops also caused memory leaks? Is it ok?

    Thanks
     
  4. Budding

    Budding Notebook Virtuoso

    Reputations:
    1,686
    Messages:
    3,982
    Likes Received:
    0
    Trophy Points:
    105
    Memory leaks won't damage your hardware. You can continue developing without worrying.
     
  5. Robgunn

    Robgunn Notebook Evangelist

    Reputations:
    163
    Messages:
    383
    Likes Received:
    0
    Trophy Points:
    30
    Budding is correct. Code away, but this time make sure you clean up after yourself.
     
  6. chrisliando

    chrisliando Notebook Consultant

    Reputations:
    0
    Messages:
    114
    Likes Received:
    0
    Trophy Points:
    30
    O...I see..In reality, how does the application I developed allocate place in memory? If my physical RAM is 4GB and my app needs for example 1GB, then my RAM is 3GB when my app ran?

    Or how?

    Ok I thought it would damage something.

    Thanks
     
  7. FusiveResonance

    FusiveResonance Notebook Evangelist

    Reputations:
    143
    Messages:
    421
    Likes Received:
    0
    Trophy Points:
    30
    google is your friend.

    http://en.wikipedia.org/wiki/Memory_allocation

    Nothing that you do "software wise" will ever physically damage your components, unless your overclocking by upping the voltage. That being said, click away without worrying about your hardware.
     
  8. chrisliando

    chrisliando Notebook Consultant

    Reputations:
    0
    Messages:
    114
    Likes Received:
    0
    Trophy Points:
    30
    I also think of the long term effect of the memory leaks. Is there any long term effect? Like reducing the system performance or CPU, RAM performance?

    Thanks.