diff --git a/mindspore/lite/src/runtime/kernel/arm/string/hashtable_lookup.cc b/mindspore/lite/src/runtime/kernel/arm/string/hashtable_lookup.cc index 3e48c54aee..f3b8e160f7 100644 --- a/mindspore/lite/src/runtime/kernel/arm/string/hashtable_lookup.cc +++ b/mindspore/lite/src/runtime/kernel/arm/string/hashtable_lookup.cc @@ -62,7 +62,7 @@ int HashtableLookupCPUKernel::Run() { output_string_pack[i] = null_string_pack; hits_data[i] = 0; } else { - output_string_pack[i] = all_string_pack[i]; + output_string_pack[i] = all_string_pack[index]; hits_data[i] = 1; } }