aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 5eb3bb56..6bf268a4 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -787,10 +787,10 @@ int ssh_buffer_pack_va(struct ssh_buffer_struct *buffer,
}
if (rc != SSH_ERROR){
- /* verify that the last hidden argument is correct */
- o.dword = va_arg(ap, uint32_t);
- if (o.dword != SSH_BUFFER_PACK_END){
- rc = SSH_ERROR;
+ /* Check if our canary is intact, if not somthing really bad happened */
+ uint32_t canary = va_arg(ap, uint32_t);
+ if (canary != SSH_BUFFER_PACK_END) {
+ abort();
}
}
return rc;