diff options
author | Martin Schanzenbach <schanzen@gnunet.org> | 2024-01-08 13:49:43 +0100 |
---|---|---|
committer | Martin Schanzenbach <schanzen@gnunet.org> | 2024-01-08 13:49:43 +0100 |
commit | a7db373596078b0c8088164457dce1594f459672 (patch) | |
tree | 457960e1dd919e1e84150b8902b034872a702c0d | |
parent | 722a53e211a247c15b218ea8767f457aa87861d2 (diff) | |
download | gnunet-a7db373596078b0c8088164457dce1594f459672.tar.gz gnunet-a7db373596078b0c8088164457dce1594f459672.zip |
conversation: fix buffer length for string parser in gnsrecord
-rw-r--r-- | src/contrib/service/conversation/plugin_gnsrecord_conversation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contrib/service/conversation/plugin_gnsrecord_conversation.c b/src/contrib/service/conversation/plugin_gnsrecord_conversation.c index 786711c8e..802732cfe 100644 --- a/src/contrib/service/conversation/plugin_gnsrecord_conversation.c +++ b/src/contrib/service/conversation/plugin_gnsrecord_conversation.c | |||
@@ -121,7 +121,7 @@ conversation_string_to_value (void *cls, | |||
121 | case GNUNET_GNSRECORD_TYPE_PHONE: | 121 | case GNUNET_GNSRECORD_TYPE_PHONE: |
122 | { | 122 | { |
123 | struct GNUNET_CONVERSATION_PhoneRecord *pr; | 123 | struct GNUNET_CONVERSATION_PhoneRecord *pr; |
124 | char line_port[103]; | 124 | char line_port[104]; |
125 | const char *dash; | 125 | const char *dash; |
126 | struct GNUNET_PeerIdentity peer; | 126 | struct GNUNET_PeerIdentity peer; |
127 | 127 | ||