Loading lib/curl_sasl.c +6 −4 Original line number Diff line number Diff line Loading @@ -1683,8 +1683,10 @@ CURLcode Curl_sasl_continue(struct SASL *sasl, struct connectdata *conn, return result; } else if(code == sasl->params->contcode) { /* Acknowledge the continuation by sending a 0x01 response base64 encoded */ if (!(resp = strdup("AQ=="))) /* Acknowledge the continuation by sending a 0x01 response base64 encoded */ resp = strdup("AQ=="); if(!resp) result = CURLE_OUT_OF_MEMORY; break; } Loading Loading
lib/curl_sasl.c +6 −4 Original line number Diff line number Diff line Loading @@ -1683,8 +1683,10 @@ CURLcode Curl_sasl_continue(struct SASL *sasl, struct connectdata *conn, return result; } else if(code == sasl->params->contcode) { /* Acknowledge the continuation by sending a 0x01 response base64 encoded */ if (!(resp = strdup("AQ=="))) /* Acknowledge the continuation by sending a 0x01 response base64 encoded */ resp = strdup("AQ=="); if(!resp) result = CURLE_OUT_OF_MEMORY; break; } Loading