1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

README.Coding: fix good example

metze
This commit is contained in:
Stefan Metzmacher 2010-05-11 08:03:56 +02:00
parent 9e643f0784
commit b8c414b35f

View File

@ -210,8 +210,9 @@ Good Examples::
print("Allocated %d elements.\n", y);
done:
if (z)
if (z) {
free(z);
}
return ret;
}