diff options
-rw-r--r-- | README.Coding | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/README.Coding b/README.Coding index ddeacc934a..8bfd86f7b3 100644 --- a/README.Coding +++ b/README.Coding @@ -210,8 +210,9 @@ Good Examples:: print("Allocated %d elements.\n", y); done: - if (z) + if (z) { free(z); + } return ret; } |