summaryrefslogtreecommitdiff
path: root/src/lib/dev.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/dev.c')
-rw-r--r--src/lib/dev.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/dev.c b/src/lib/dev.c
index a6be762b..0a783bf7 100644
--- a/src/lib/dev.c
+++ b/src/lib/dev.c
@@ -552,10 +552,11 @@ int flow_accept(qosspec_t * qs,
err = -ECRYPT;
goto fail_crypt_pkp;
}
-
- msg.has_pk = true;
- msg.pk.data = buf;
- msg.pk.len = (uint32_t) key_len;
+ if (key_len > 0) {
+ msg.has_pk = true;
+ msg.pk.data = buf;
+ msg.pk.len = (uint32_t) key_len;
+ }
pthread_cleanup_push(crypt_dh_pkp_destroy, pkp);