gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-anastasis] branch master updated: Solved some silly pointer issue


From: gnunet
Subject: [taler-anastasis] branch master updated: Solved some silly pointer issues. API Test still not running: Unexpected response code 0...
Date: Sat, 14 Dec 2019 18:56:23 +0100

This is an automated email from the git hooks/post-receive script.

dennis-neufeld pushed a commit to branch master
in repository anastasis.

The following commit(s) were added to refs/heads/master by this push:
     new 1b7dbc7  Solved some silly pointer issues. API Test still not running: 
Unexpected response code 0...
1b7dbc7 is described below

commit 1b7dbc76c0c72ef4c3c4ee9ffdca7a309d086d1c
Author: Dennis Neufeld <address@hidden>
AuthorDate: Sat Dec 14 17:56:07 2019 +0000

    Solved some silly pointer issues. API Test still not running: Unexpected 
response code 0...
---
 src/backend/anastasis-httpd_policy_upload.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/backend/anastasis-httpd_policy_upload.c 
b/src/backend/anastasis-httpd_policy_upload.c
index 77726b7..a43d3a2 100644
--- a/src/backend/anastasis-httpd_policy_upload.c
+++ b/src/backend/anastasis-httpd_policy_upload.c
@@ -561,7 +561,6 @@ AH_handler_policy_POST (struct MHD_Connection *connection,
 {
   struct PolicyUploadContext *puc;
   struct ANASTASIS_AccountPubP accountPubP;
-
   puc = *con_cls;
   if (NULL == puc)
   {
@@ -668,7 +667,7 @@ AH_handler_policy_POST (struct MHD_Connection *connection,
             GNUNET_STRINGS_string_to_data (sig_s,
                                            strlen (sig_s),
                                            &puc->account_sig,
-                                           sizeof (&puc->account_sig))) )
+                                           sizeof (puc->account_sig))) )
       {
         GNUNET_break_op (0);
         return TALER_MHD_reply_with_error (connection,
@@ -689,7 +688,7 @@ AH_handler_policy_POST (struct MHD_Connection *connection,
             GNUNET_STRINGS_string_to_data (etag,
                                            strlen (etag),
                                            &puc->new_policy_upload_hash,
-                                           sizeof 
(&puc->new_policy_upload_hash))) )
+                                           sizeof 
(puc->new_policy_upload_hash))) )
       {
         GNUNET_break_op (0);
         return TALER_MHD_reply_with_error (connection,

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]