diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-05-11 08:03:56 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-05-11 08:03:56 +0200 |
commit | b8c414b35f1bd37a70af7746ee5cc9427e4e31ee (patch) | |
tree | 7191fd800ce2728e8f34dcda8eecc23e636ad93e | |
parent | 9e643f0784c9af1c60b3fb879a46059a1355862b (diff) | |
download | samba-b8c414b35f1bd37a70af7746ee5cc9427e4e31ee.tar.gz samba-b8c414b35f1bd37a70af7746ee5cc9427e4e31ee.tar.bz2 samba-b8c414b35f1bd37a70af7746ee5cc9427e4e31ee.zip |
README.Coding: fix good example
metze
-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; } |