File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -879,7 +879,7 @@ \subsection{Introduction}
879879hand, if a program calls \code {free()} for a block and then continues
880880to use the block, it creates a conflict with re-use of the block
881881through another \code {malloc()} call. This is called \dfn {using freed
882- memory} has the same bad consequences as referencing uninitialized
882+ memory}. It has the same bad consequences as referencing uninitialized
883883data --- core dumps, wrong results, mysterious crashes.
884884
885885Common causes of memory leaks are unusual paths through the code. For
Original file line number Diff line number Diff line change @@ -879,7 +879,7 @@ \subsection{Introduction}
879879hand, if a program calls \code {free()} for a block and then continues
880880to use the block, it creates a conflict with re-use of the block
881881through another \code {malloc()} call. This is called \dfn {using freed
882- memory} has the same bad consequences as referencing uninitialized
882+ memory}. It has the same bad consequences as referencing uninitialized
883883data --- core dumps, wrong results, mysterious crashes.
884884
885885Common causes of memory leaks are unusual paths through the code. For
You can’t perform that action at this time.
0 commit comments