CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: himitsujanai

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    981

    Memory Leak using string

    Hi guys its been a while i just wanna ask if you have any idea why this code leaking. The below code is just a sample representation on how it works in one of the parts of my actual program that...
  2. Replies
    4
    Views
    735

    Re: Help please.. C++ college work

    I agree there are so many inconsistency in your code




    char getname();
    void setname();
    char getcourse();
    void setcourse();
    int getid();
  3. Replies
    4
    Views
    9,458

    Re: invalid conversion from 'int*' to 'int'

    Hi it seems in your code you had conflicting idea ... you declare arr1 and arr2 as interger pointer you should allocated them something like this outside the loop ..

    int *arr1, *arr2;


    arr1...
  4. Re: Leak: Allocation Number increasing by one when reported

    Thanks Victor but I already know how to manage and how to solved memory leak the point is this memory leak is a bit tricky and new to me because every time it reported the allocation number is...
  5. Leak: Allocation Number increasing by one when reported

    Hi guys i have a memory leak in my program which the memory allocation number is increasing by one everytime its reported. I wanted to put a break point on it but I'm wondering if that allocation...
  6. Replies
    8
    Views
    7,650

    Re: Memory Leak inside Static Library

    "because it's global and the leak checker runs before globals are deconstructed"
    Thanks Lindley i think you are right. As I said I already found a solution of this problem and it actually removed...
  7. Replies
    8
    Views
    7,650

    Re: Memory Leak inside Static Library

    Thanks for your reply paul im sorry i missed to reply both of ur email...
    - Yha i agree definitely if you can use object why pointers.
    - as i said the elements that added in vector<Button*>...
  8. Replies
    8
    Views
    7,650

    Re: Memory Leak inside Static Library

    Thanks for the reply

    - Sorry for the confusion ... its a typo its supposed to be btnExitButton.SetupButton(). This is the function to be called to setup all the properties of the button and add...
  9. Replies
    8
    Views
    7,650

    [RESOLVED]Memory Leak inside Static Library

    Hi guys I'm new here and I'm very thankful because this forum helps me a lot to answer some question in mind when it comes c++ codes.

    I need your suggestions on my leak problem in the game that...
  10. Leak: Allocation Number increasing by one when reported

    Hi guys i have a memory leak in my program which the memory allocation number is increasing by one everytime its reported. I wanted to put a break point on it but I'm wondering if that allocation...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured