mirror of
https://gitee.com/openharmony/inputmethod_imf
synced 2024-11-23 06:40:06 +00:00
fix:check null pointer before access
Signed-off-by: wuchengwen <wuchengwen4@huawei.com>
This commit is contained in:
parent
0959ba8141
commit
ca1575096d
@ -53,7 +53,7 @@ InputMethod_ErrorCode IsValidInputMethodProxy(InputMethod_InputMethodProxy *inpu
|
||||
return IME_ERR_PARAMCHECK;
|
||||
}
|
||||
|
||||
if (g_inputMethodProxy->attached == false) {
|
||||
if (!(g_inputMethodProxy->attached)) {
|
||||
IMSA_HILOGE("g_inputMethodProxy is not attached");
|
||||
return IME_ERR_DETACHED;
|
||||
}
|
||||
@ -118,22 +118,8 @@ static int32_t IsValidTextEditorProxy(InputMethod_TextEditorProxy *textEditor)
|
||||
return IME_ERR_OK;
|
||||
}
|
||||
|
||||
InputMethod_ErrorCode OH_InputMethodController_Attach(InputMethod_TextEditorProxy *textEditor,
|
||||
InputMethod_AttachOptions *options, InputMethod_InputMethodProxy **inputMethodProxy)
|
||||
static TextConfig ConstructTextConfig(const InputMethod_TextConfig& config)
|
||||
{
|
||||
if ((IsValidTextEditorProxy(textEditor) != IME_ERR_OK) || options == nullptr || inputMethodProxy == nullptr) {
|
||||
IMSA_HILOGE("invalid parameter");
|
||||
return IME_ERR_NULL_POINTER;
|
||||
}
|
||||
|
||||
InputMethod_ErrorCode errCode = GetInputMethodProxy(textEditor);
|
||||
if (errCode != IME_ERR_OK) {
|
||||
return errCode;
|
||||
}
|
||||
|
||||
InputMethod_TextConfig config;
|
||||
textEditor->getTextConfigFunc(textEditor, &config);
|
||||
|
||||
TextConfig textConfig = {
|
||||
.inputAttribute = {
|
||||
.inputPattern = static_cast<InputMethod_TextInputType>(config.inputType),
|
||||
@ -155,12 +141,35 @@ InputMethod_ErrorCode OH_InputMethodController_Attach(InputMethod_TextEditorProx
|
||||
.height = config.avoidInfo.height,
|
||||
};
|
||||
|
||||
return textConfig;
|
||||
}
|
||||
|
||||
InputMethod_ErrorCode OH_InputMethodController_Attach(InputMethod_TextEditorProxy *textEditor,
|
||||
InputMethod_AttachOptions *options, InputMethod_InputMethodProxy **inputMethodProxy)
|
||||
{
|
||||
if ((IsValidTextEditorProxy(textEditor) != IME_ERR_OK) || options == nullptr || inputMethodProxy == nullptr) {
|
||||
IMSA_HILOGE("invalid parameter");
|
||||
return IME_ERR_NULL_POINTER;
|
||||
}
|
||||
|
||||
InputMethod_ErrorCode errCode = GetInputMethodProxy(textEditor);
|
||||
if (errCode != IME_ERR_OK) {
|
||||
return errCode;
|
||||
}
|
||||
|
||||
InputMethod_TextConfig config;
|
||||
textEditor->getTextConfigFunc(textEditor, &config);
|
||||
|
||||
auto textConfig = ConstructTextConfig(config);
|
||||
|
||||
auto controller = InputMethodController::GetInstance();
|
||||
OHOS::sptr<NativeTextChangedListener> listener = nullptr;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(g_textEditorProxyMapMutex);
|
||||
if (g_inputMethodProxy != nullptr) {
|
||||
listener = g_inputMethodProxy->listener;
|
||||
}
|
||||
}
|
||||
|
||||
int32_t err = controller->Attach(listener, options->showKeyboard, textConfig);
|
||||
if (err == ErrorCode::NO_ERROR) {
|
||||
|
Loading…
Reference in New Issue
Block a user