mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Null pointers.
This commit is contained in:
parent
b399cfc7a2
commit
56a5a8280e
@ -107,7 +107,7 @@ int IconvProcessor::convert(char const * buf, size_t buflen,
|
||||
// flush out remaining data. This is needed because iconv sometimes
|
||||
// holds back chars in the stream, waiting for a combination character
|
||||
// (see e.g. http://sources.redhat.com/bugzilla/show_bug.cgi?id=1124)
|
||||
iconv(h_->cd, NULL, NULL, &outbuf, &outbytesleft);
|
||||
iconv(h_->cd, nullptr, nullptr, &outbuf, &outbytesleft);
|
||||
|
||||
//lyxerr << dec;
|
||||
//lyxerr << "Inbytesleft: " << inbytesleft << endl;
|
||||
|
Loading…
Reference in New Issue
Block a user