Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit debf2e8

Browse files
committed
Fix dropped word.
1 parent c3fb88b commit debf2e8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/ext.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ \subsection{Introduction}
879879
hand, if a program calls \code{free()} for a block and then continues
880880
to use the block, it creates a conflict with re-use of the block
881881
through 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
883883
data --- core dumps, wrong results, mysterious crashes.
884884

885885
Common causes of memory leaks are unusual paths through the code. For

Doc/ext/ext.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ \subsection{Introduction}
879879
hand, if a program calls \code{free()} for a block and then continues
880880
to use the block, it creates a conflict with re-use of the block
881881
through 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
883883
data --- core dumps, wrong results, mysterious crashes.
884884

885885
Common causes of memory leaks are unusual paths through the code. For

0 commit comments

Comments
 (0)