このコードでセグメンテーション違反が発生し続けています。現在 C を学習しています。誰か助けてもらえますか?
エラーの場所:
char *m;
char *as = concat("helloworld", buf);
*m = sha1(as); <<<<<< as
printf("%s\n", m);
free(as);
concat 関数 (私のものではなく、2 つの文字列を結合するために使用されます):
char* concat(char *s1, char *s2)
{
size_t len1 = strlen(s1);
size_t len2 = strlen(s2);
char *result = malloc(len1+len2+1);//+1 for the zero-terminator
//in real code you would check for errors in malloc here
memcpy(result, s1, len1);
memcpy(result+len1, s2, len2+1);//+1 to copy the null-terminator
return result;
}
sha1 関数:
char *sha1( char *val ){
int msg_length = strlen( val );
int hash_length = gcry_md_get_algo_dlen( GCRY_MD_SHA1 );
unsigned char hash[ hash_length ];
char *out = (char *) malloc( sizeof(char) * ((hash_length*2)+1) );
char *p = out;
gcry_md_hash_buffer( GCRY_MD_SHA1, hash, val, msg_length );
int i;
for ( i = 0; i < hash_length; i++, p += 2 ) {
snprintf ( p, 3, "%02x", hash[i] );
}
return out;
}
私が尋ねているので、彼らはどういう意味ですか:
//in real code you would check for errors in malloc here
前もって感謝します