diff --git a/en/contribute/OpenHarmony-c-cpp-secure-coding-guide.md b/en/contribute/OpenHarmony-c-cpp-secure-coding-guide.md index 7d63188c133b51d5922c7a2611118761e3ebdbbc..92a1a7c405e461bb182db62964360dc8f3da46f3 100644 --- a/en/contribute/OpenHarmony-c-cpp-secure-coding-guide.md +++ b/en/contribute/OpenHarmony-c-cpp-secure-coding-guide.md @@ -1167,7 +1167,7 @@ int Fun() // msg is saved to the global queue, and the freed body member may be used. if (!InsertMsgToQueue(msg)) { - delete msg->body; // The memory to which the bbodyb points may be freed again. + delete msg->body; // The memory to which the body points may be freed again. delete msg; return -1; }