mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-19 10:42:36 +03:00
Amiga: Fix codesets.library conversion when string specified as zero length
This commit is contained in:
parent
99a3d04d55
commit
81c40ab7c2
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2008-2020 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
* Copyright 2008-2021 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
||||||
*
|
*
|
||||||
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
*
|
*
|
||||||
@ -35,7 +35,7 @@
|
|||||||
static nserror ami_utf8_codesets(const char *string, size_t len, char **result, bool to_local)
|
static nserror ami_utf8_codesets(const char *string, size_t len, char **result, bool to_local)
|
||||||
{
|
{
|
||||||
char *out;
|
char *out;
|
||||||
ULONG utf8_tag, local_tag;
|
ULONG utf8_tag = CSA_SourceCodeset, local_tag = CSA_DestCodeset, len_tag = CSA_SourceLen;
|
||||||
static struct codeset *utf8_cs = NULL;
|
static struct codeset *utf8_cs = NULL;
|
||||||
static struct codeset *local_cs = NULL;
|
static struct codeset *local_cs = NULL;
|
||||||
|
|
||||||
@ -54,13 +54,12 @@ static nserror ami_utf8_codesets(const char *string, size_t len, char **result,
|
|||||||
if(to_local == false) {
|
if(to_local == false) {
|
||||||
local_tag = CSA_SourceCodeset;
|
local_tag = CSA_SourceCodeset;
|
||||||
utf8_tag = CSA_DestCodeset;
|
utf8_tag = CSA_DestCodeset;
|
||||||
} else {
|
|
||||||
utf8_tag = CSA_SourceCodeset;
|
|
||||||
local_tag = CSA_DestCodeset;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(len == 0) len_tag = TAG_IGNORE;
|
||||||
|
|
||||||
out = CodesetsConvertStr(CSA_Source, string,
|
out = CodesetsConvertStr(CSA_Source, string,
|
||||||
CSA_SourceLen, len,
|
len_tag, len,
|
||||||
#ifdef __amigaos4__
|
#ifdef __amigaos4__
|
||||||
local_tag, local_cs,
|
local_tag, local_cs,
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user