mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
Silence compiler warning about signed vs unsigned chars.
This commit is contained in:
parent
6b41d642e3
commit
94ec712cd2
@ -122,7 +122,10 @@ Datum ASN1_STRING_to_text(ASN1_STRING *str)
|
|||||||
outlen = 0;
|
outlen = 0;
|
||||||
BIO_write(membuf, &outlen, 1);
|
BIO_write(membuf, &outlen, 1);
|
||||||
size = BIO_get_mem_data(membuf, &sp);
|
size = BIO_get_mem_data(membuf, &sp);
|
||||||
dp = pg_do_encoding_conversion(sp, size-1, PG_UTF8, GetDatabaseEncoding());
|
dp = (char *) pg_do_encoding_conversion((unsigned char *) sp,
|
||||||
|
size-1,
|
||||||
|
PG_UTF8,
|
||||||
|
GetDatabaseEncoding());
|
||||||
outlen = strlen(dp);
|
outlen = strlen(dp);
|
||||||
result = palloc(VARHDRSZ + outlen);
|
result = palloc(VARHDRSZ + outlen);
|
||||||
memcpy(VARDATA(result), dp, outlen);
|
memcpy(VARDATA(result), dp, outlen);
|
||||||
@ -288,7 +291,10 @@ Datum X509_NAME_to_text(X509_NAME *name)
|
|||||||
BIO_write(membuf, &i, 1);
|
BIO_write(membuf, &i, 1);
|
||||||
size = BIO_get_mem_data(membuf, &sp);
|
size = BIO_get_mem_data(membuf, &sp);
|
||||||
|
|
||||||
dp = pg_do_encoding_conversion(sp, size-1, PG_UTF8, GetDatabaseEncoding());
|
dp = (char *) pg_do_encoding_conversion((unsigned char *) sp,
|
||||||
|
size-1,
|
||||||
|
PG_UTF8,
|
||||||
|
GetDatabaseEncoding());
|
||||||
BIO_free(membuf);
|
BIO_free(membuf);
|
||||||
outlen = strlen(dp);
|
outlen = strlen(dp);
|
||||||
result = palloc(VARHDRSZ + outlen);
|
result = palloc(VARHDRSZ + outlen);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user