From 36d9758a419c2da3f27da6fa8148d08d370a8875 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:00:48 +0800 Subject: [PATCH 1/3] Convert C Runtime errors list into a table --- .../c-runtime-errors-r6002-through-r6035.md | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md index 97bc308ef1..d9c118743e 100644 --- a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md +++ b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md @@ -13,21 +13,23 @@ The C Runtime library (CRT) may report a runtime error when your app is loaded o ## C Runtime errors -[C Runtime Error R6002](../../error-messages/tool-errors/c-runtime-error-r6002.md) \ -[C Runtime Error R6008](../../error-messages/tool-errors/c-runtime-error-r6008.md) \ -[C Runtime Error R6009](../../error-messages/tool-errors/c-runtime-error-r6009.md) \ -[C Runtime Error R6016](../../error-messages/tool-errors/c-runtime-error-r6016.md) \ -[C Runtime Error R6017](../../error-messages/tool-errors/c-runtime-error-r6017.md) \ -[C Runtime Error R6018](../../error-messages/tool-errors/c-runtime-error-r6018.md) \ -[C Runtime Error R6019](../../error-messages/tool-errors/c-runtime-error-r6019.md) \ -[C Runtime Error R6024](../../error-messages/tool-errors/c-runtime-error-r6024.md) \ -[C Runtime Error R6025](../../error-messages/tool-errors/c-runtime-error-r6025.md) \ -[C Runtime Error R6028](../../error-messages/tool-errors/c-runtime-error-r6028.md) \ -[C Runtime Error R6030](../../error-messages/tool-errors/c-runtime-error-r6030.md) \ -[C Runtime Error R6031](../../error-messages/tool-errors/c-runtime-error-r6031.md) \ -[C Runtime Error R6032](../../error-messages/tool-errors/c-runtime-error-r6032.md) \ -[C Runtime Error R6033](../../error-messages/tool-errors/c-runtime-error-r6033.md) \ -[C Runtime Error R6035](../../error-messages/tool-errors/c-runtime-error-r6035.md) +| Error | Message | +|--|--| +| [C Runtime Error R6002](../../error-messages/tool-errors/c-runtime-error-r6002.md) | floating-point support not loaded | +| [C Runtime Error R6008](../../error-messages/tool-errors/c-runtime-error-r6008.md) | not enough space for arguments | +| [C Runtime Error R6009](../../error-messages/tool-errors/c-runtime-error-r6009.md) | not enough space for environment | +| [C Runtime Error R6016](../../error-messages/tool-errors/c-runtime-error-r6016.md) | not enough space for thread data | +| [C Runtime Error R6017](../../error-messages/tool-errors/c-runtime-error-r6017.md) | unexpected multithread lock error | +| [C Runtime Error R6018](../../error-messages/tool-errors/c-runtime-error-r6018.md) | unexpected heap error | +| [C Runtime Error R6019](../../error-messages/tool-errors/c-runtime-error-r6019.md) | unable to open console device | +| [C Runtime Error R6024](../../error-messages/tool-errors/c-runtime-error-r6024.md) | not enough space for _onexit/atexit table | +| [C Runtime Error R6025](../../error-messages/tool-errors/c-runtime-error-r6025.md) | pure virtual function call | +| [C Runtime Error R6028](../../error-messages/tool-errors/c-runtime-error-r6028.md) | unable to initialize heap | +| [C Runtime Error R6030](../../error-messages/tool-errors/c-runtime-error-r6030.md) | CRT not initialized | +| [C Runtime Error R6031](../../error-messages/tool-errors/c-runtime-error-r6031.md) | Attempt to initialize the CRT more than once. This indicates a bug in your application. | +| [C Runtime Error R6032](../../error-messages/tool-errors/c-runtime-error-r6032.md) | Not enough space for locale information | +| [C Runtime Error R6033](../../error-messages/tool-errors/c-runtime-error-r6033.md) | Attempt to use MSIL code from this assembly during native code initialization. This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain. | +| [C Runtime Error R6035](../../error-messages/tool-errors/c-runtime-error-r6035.md) | A module in this application is initializing the module's global security cookie while a function relying on that security cookie is active. Call __security_init_cookie earlier. | ## See also From 48ade32f35fce006898badc9e1ce92d08cb7072c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:02:19 +0800 Subject: [PATCH 2/3] Simplify superfluous relative links in "C Runtime errors (Rxxxx)" --- .../c-runtime-errors-r6002-through-r6035.md | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md index d9c118743e..1199507c3b 100644 --- a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md +++ b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md @@ -9,27 +9,27 @@ ms.assetid: 78019050-9a30-4b61-8250-a5702e0e2393 The C Runtime library (CRT) may report a runtime error when your app is loaded or running. Even though each message refers to the Microsoft Visual C++ runtime library, it doesn't mean there's a bug in the library. These errors indicate either a bug in your app's code, or a condition that the runtime library can't handle, such as low memory. End users of your app may see these errors unless your write your app to prevent them, or to capture the errors and present a friendly error message to your users instead. -[!INCLUDE[error-boilerplate](../../error-messages/includes/error-boilerplate.md)] +[!INCLUDE[error-boilerplate](../includes/error-boilerplate.md)] ## C Runtime errors | Error | Message | |--|--| -| [C Runtime Error R6002](../../error-messages/tool-errors/c-runtime-error-r6002.md) | floating-point support not loaded | -| [C Runtime Error R6008](../../error-messages/tool-errors/c-runtime-error-r6008.md) | not enough space for arguments | -| [C Runtime Error R6009](../../error-messages/tool-errors/c-runtime-error-r6009.md) | not enough space for environment | -| [C Runtime Error R6016](../../error-messages/tool-errors/c-runtime-error-r6016.md) | not enough space for thread data | -| [C Runtime Error R6017](../../error-messages/tool-errors/c-runtime-error-r6017.md) | unexpected multithread lock error | -| [C Runtime Error R6018](../../error-messages/tool-errors/c-runtime-error-r6018.md) | unexpected heap error | -| [C Runtime Error R6019](../../error-messages/tool-errors/c-runtime-error-r6019.md) | unable to open console device | -| [C Runtime Error R6024](../../error-messages/tool-errors/c-runtime-error-r6024.md) | not enough space for _onexit/atexit table | -| [C Runtime Error R6025](../../error-messages/tool-errors/c-runtime-error-r6025.md) | pure virtual function call | -| [C Runtime Error R6028](../../error-messages/tool-errors/c-runtime-error-r6028.md) | unable to initialize heap | -| [C Runtime Error R6030](../../error-messages/tool-errors/c-runtime-error-r6030.md) | CRT not initialized | -| [C Runtime Error R6031](../../error-messages/tool-errors/c-runtime-error-r6031.md) | Attempt to initialize the CRT more than once. This indicates a bug in your application. | -| [C Runtime Error R6032](../../error-messages/tool-errors/c-runtime-error-r6032.md) | Not enough space for locale information | -| [C Runtime Error R6033](../../error-messages/tool-errors/c-runtime-error-r6033.md) | Attempt to use MSIL code from this assembly during native code initialization. This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain. | -| [C Runtime Error R6035](../../error-messages/tool-errors/c-runtime-error-r6035.md) | A module in this application is initializing the module's global security cookie while a function relying on that security cookie is active. Call __security_init_cookie earlier. | +| [C Runtime Error R6002](c-runtime-error-r6002.md) | floating-point support not loaded | +| [C Runtime Error R6008](c-runtime-error-r6008.md) | not enough space for arguments | +| [C Runtime Error R6009](c-runtime-error-r6009.md) | not enough space for environment | +| [C Runtime Error R6016](c-runtime-error-r6016.md) | not enough space for thread data | +| [C Runtime Error R6017](c-runtime-error-r6017.md) | unexpected multithread lock error | +| [C Runtime Error R6018](c-runtime-error-r6018.md) | unexpected heap error | +| [C Runtime Error R6019](c-runtime-error-r6019.md) | unable to open console device | +| [C Runtime Error R6024](c-runtime-error-r6024.md) | not enough space for _onexit/atexit table | +| [C Runtime Error R6025](c-runtime-error-r6025.md) | pure virtual function call | +| [C Runtime Error R6028](c-runtime-error-r6028.md) | unable to initialize heap | +| [C Runtime Error R6030](c-runtime-error-r6030.md) | CRT not initialized | +| [C Runtime Error R6031](c-runtime-error-r6031.md) | Attempt to initialize the CRT more than once. This indicates a bug in your application. | +| [C Runtime Error R6032](c-runtime-error-r6032.md) | Not enough space for locale information | +| [C Runtime Error R6033](c-runtime-error-r6033.md) | Attempt to use MSIL code from this assembly during native code initialization. This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain. | +| [C Runtime Error R6035](c-runtime-error-r6035.md) | A module in this application is initializing the module's global security cookie while a function relying on that security cookie is active. Call __security_init_cookie earlier. | ## See also From 580bc08b839a30eea1fada8403128644c42e7b97 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:02:52 +0800 Subject: [PATCH 3/3] Update metadata in "C Runtime errors (Rxxxx)" --- .../tool-errors/c-runtime-errors-r6002-through-r6035.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md index 1199507c3b..cbac956974 100644 --- a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md +++ b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: C Runtime errors (Rxxxx)" title: "C Runtime errors" -ms.date: "04/16/2019" +description: "Learn more about: C Runtime errors (Rxxxx)" +ms.date: 04/16/2019 f1_keywords: ["c.errors", "R6000", "R6003", "R6010", "R6022", "R6023", "R6034"] -ms.assetid: 78019050-9a30-4b61-8250-a5702e0e2393 --- # C Runtime errors (Rxxxx)