You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
-
i cannot change the header file because it is the requirements I have to follow. which is why fileName cannot be a char array, but a char pointer. and ReadFile() is called only once in the entire program. and fileName is only ever used in ReadFile().livelaughlove– livelaughlove2012-10-20 23:59:57 +00:00Commented Oct 20, 2012 at 23:59
-
oh and fileName is not getting deleted for sure. because when I take delete []fileName; out of the destructor and put it at the end of ReadFile() after file.close() i don't get any memory leak msg.livelaughlove– livelaughlove2012-10-21 00:01:51 +00:00Commented Oct 21, 2012 at 0:01
-
@livelaughlove - you've just logically proved that your problem does not exist. So you have to figure out which of your premises is wrong. Sorry, but handwaving assertions won't get you any meaningful help. Post real code, the smallest example you can put together that compiles, runs, and demonstrates the problem.Pete Becker– Pete Becker2012-10-21 00:02:25 +00:00Commented Oct 21, 2012 at 0:02
-
the only code I didn't post is what I do with the file. but that has nothing to do with the fileName. the fileName is only used to store what the user inputs and use that to open the file. like i said the rest of the program works fine and I am just trying to get rid of memory leaks. when delete []fileName; is in destructor, I get a memory leak msg. when delete []fileName; is at the end of ReadFile() I get no memory leak msg. that is what I don't understand.livelaughlove– livelaughlove2012-10-21 00:07:42 +00:00Commented Oct 21, 2012 at 0:07
Add a comment
|
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. python-3.x), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-cpp