diff options
author | Marvin Borner | 2021-04-01 19:39:14 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-01 19:39:14 +0200 |
commit | afa00abb2b68205bee539d7947130d6b1b1ec6e9 (patch) | |
tree | 3a821a75af6c4d4ff1bd4128c4859d77abf87e66 /libs/libc/stack.c | |
parent | 4c168fb34c15a1b8981abef7ccef1542a6fb05ca (diff) |
Hardened entire system
By using the nonnull attribute and replace buffer-overflow-prone
functions like strcpy, strcat and sprintf by strlcpy, strlcat and
snprintf.
Diffstat (limited to 'libs/libc/stack.c')
-rw-r--r-- | libs/libc/stack.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/libs/libc/stack.c b/libs/libc/stack.c index 0cbb69d..6f16709 100644 --- a/libs/libc/stack.c +++ b/libs/libc/stack.c @@ -39,11 +39,8 @@ static struct stack_node *stack_new_node(void) return node; } -static u32 stack_push_bot_node(struct stack *stack, struct stack_node *node) +NONNULL static u32 stack_push_bot_node(struct stack *stack, struct stack_node *node) { - if (!stack || !node) - return 0; - if (stack->tail) { struct stack_node *iterator = stack->tail; while (iterator) { @@ -60,11 +57,8 @@ static u32 stack_push_bot_node(struct stack *stack, struct stack_node *node) return 1; } -static u32 stack_push_node(struct stack *stack, struct stack_node *node) +NONNULL static u32 stack_push_node(struct stack *stack, struct stack_node *node) { - if (!stack || !node) - return 0; - if (stack->tail) { stack->tail->next = node; node->prev = stack->tail; @@ -97,7 +91,7 @@ u32 stack_push(struct stack *stack, void *data) void *stack_pop(struct stack *stack) { - if (!stack || !stack->tail) + if (!stack->tail) return NULL; struct stack_node *prev = stack->tail; @@ -113,7 +107,7 @@ void *stack_pop(struct stack *stack) void *stack_peek(struct stack *stack) { - if (!stack || !stack->tail) + if (!stack->tail) return NULL; return stack->tail->data; |