From 7593225e18789fbded0823c40850bc46148ef39a Mon Sep 17 00:00:00 2001 From: LDA Date: Tue, 10 Sep 2024 08:00:06 +0200 Subject: [PATCH] [MOD/META] Correct README, make sure edit is NULL --- README.MD | 2 +- src/StanzaBuilder.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.MD b/README.MD index a84c386..1d3f334 100644 --- a/README.MD +++ b/README.MD @@ -1,7 +1,7 @@ # Parsee - the jealous XMPP<=>Matrix bridge Parsee is a Matrix<=>XMPP bridge written in C99, with Cytoplasm, similar to Bifrost, but it is NOT a drop-in replacment. -**NOTE**: Use [this Cytoplasm branch for LMDB](https://git.telodendria.io/lda/Cytoplasm) +**NOTE**: Use [this Cytoplasm branch for LMDB](https://git.telodendria.io/lda/Cytoplasm/src/branch/fix-deadlock) ## Why? ### Naming diff --git a/src/StanzaBuilder.c b/src/StanzaBuilder.c index 5426f80..1817997 100644 --- a/src/StanzaBuilder.c +++ b/src/StanzaBuilder.c @@ -40,6 +40,7 @@ CreateStanzaBuilder(char *from, char *to, char *id) builder->replying_to_stanza = NULL; builder->replying_to_sender = NULL; + builder->editing = NULL; builder->type = NULL; builder->body = NULL; builder->oob = NULL;