diff options
author | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-26 14:57:24 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-26 14:57:24 +0100 |
commit | bb1d3fd141c33a98137edd9261a9adb9ea1d3753 (patch) | |
tree | 7c6e7c7513f4dddcf3f3e4c563b3ebf23a7265ab /doc/workflow.txt | |
parent | 44fa4a0d43a4026a091f82a055c649aa7c922706 (diff) | |
download | ouroboros-bb1d3fd141c33a98137edd9261a9adb9ea1d3753.tar.gz ouroboros-bb1d3fd141c33a98137edd9261a9adb9ea1d3753.zip |
doc: updated workflow and corrected all mallocs
lib/du_buff contained casted malloc's.
Diffstat (limited to 'doc/workflow.txt')
-rw-r--r-- | doc/workflow.txt | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/workflow.txt b/doc/workflow.txt index e48375bb..02d13f64 100644 --- a/doc/workflow.txt +++ b/doc/workflow.txt @@ -21,13 +21,21 @@ int * a; instead of
int *a;
-- don't explicitly cast malloc, but do
+- Don't explicitly cast malloc, but do
your * = malloc (sizeof *your * len);
-- when checking for invalid pointers use
+or
-if (ptr == NULL), instead of if (!ptr)
+your * = malloc (sizeof (*your) * len);
+
+- When checking for invalid pointers use
+
+if (ptr == NULL)
+
+instead of
+
+if (!ptr)
3. Development workflow
|