summaryrefslogtreecommitdiff
path: root/src/util/crypto_helper_esign.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/crypto_helper_esign.c')
-rw-r--r--src/util/crypto_helper_esign.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util/crypto_helper_esign.c b/src/util/crypto_helper_esign.c
index 8b2b8216a..8d2a9dc58 100644
--- a/src/util/crypto_helper_esign.c
+++ b/src/util/crypto_helper_esign.c
@@ -62,6 +62,7 @@ struct TALER_CRYPTO_ExchangeSignHelper
* Have we reached the sync'ed state?
*/
bool synced;
+
};
@@ -239,6 +240,15 @@ TALER_CRYPTO_helper_esign_connect (
return NULL;
}
esh->template = template;
+ if (strlen (template) >= sizeof (esh->sa.sun_path))
+ {
+ GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
+ "PATHS",
+ "TALER_RUNTIME_DIR",
+ "path too long");
+ TALER_CRYPTO_helper_esign_disconnect (esh);
+ return NULL;
+ }
}
TALER_CRYPTO_helper_esign_poll (esh);
return esh;