diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofile.md b/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofile.md
index ec903f89be65..1359585f428c 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofile.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofile.md
@@ -69,7 +69,7 @@ The path where symbol files are located. This can be multiple paths separated by
### -param DebugFilePath [out]
-A pointer to a buffer that receives the full path of the .dbg file.
+A pointer to a buffer that receives the full path of the .dbg file. This buffer must be at least MAX_PATH+1 characters.
## -returns
@@ -95,4 +95,4 @@ All DbgHelp functions, such as this one, are single threaded. Therefore, calls f
-SymGetSearchPath
\ No newline at end of file
+SymGetSearchPath
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofileex.md b/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofileex.md
index 503d09666ae3..3ebd6212a985 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofileex.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofileex.md
@@ -68,7 +68,7 @@ The path where symbol files are located. This can be multiple paths separated by
### -param DebugFilePath [out]
-A pointer to a buffer that receives the full path of the .dbg file.
+A pointer to a buffer that receives the full path of the .dbg file. This buffer must be at least MAX_PATH+1 characters.
### -param Callback [in, optional]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofileexw.md b/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofileexw.md
index 85ac9cfec7a1..a6b0bf593406 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofileexw.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-finddebuginfofileexw.md
@@ -68,7 +68,7 @@ The path where symbol files are located. This can be multiple paths separated by
### -param DebugFilePath [out]
-A pointer to a buffer that receives the full path of the .dbg file.
+A pointer to a buffer that receives the full path of the .dbg file. This buffer must be at least MAX_PATH+1 characters.
### -param Callback [in, optional]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimage.md b/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimage.md
index f92bd13e683d..15fbb13e98ee 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimage.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimage.md
@@ -68,7 +68,7 @@ The path where symbol files are located. This can be multiple paths separated by
### -param ImageFilePath [out]
-A pointer to a buffer that receives the full path of the executable file.
+A pointer to a buffer that receives the full path of the executable file. This buffer must be at least MAX_PATH+1 characters.
## -returns
@@ -94,4 +94,4 @@ All DbgHelp functions, such as this one, are single threaded. Therefore, calls f
-SymGetSearchPath
\ No newline at end of file
+SymGetSearchPath
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimageex.md b/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimageex.md
index 4136aaf5bed0..4eaab2189b79 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimageex.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimageex.md
@@ -67,7 +67,7 @@ The path where symbol files are located. This string can contain multiple paths
### -param ImageFilePath [out]
-A pointer to a buffer that receives the full path of the executable file.
+A pointer to a buffer that receives the full path of the executable file. This buffer must be at least MAX_PATH+1 characters.
### -param Callback [in, optional]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimageexw.md b/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimageexw.md
index 2ffc99a0ace8..5fd66cc63649 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimageexw.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-findexecutableimageexw.md
@@ -67,7 +67,7 @@ The path where symbol files are located. This string can contain multiple paths
### -param ImageFilePath [out]
-A pointer to a buffer that receives the full path of the executable file.
+A pointer to a buffer that receives the full path of the executable file. This buffer must be at least MAX_PATH+1 characters.
### -param Callback [in, optional]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-symfinddebuginfofile.md b/sdk-api-src/content/dbghelp/nf-dbghelp-symfinddebuginfofile.md
index 875cdd18d4ad..8e016e52f481 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-symfinddebuginfofile.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-symfinddebuginfofile.md
@@ -67,7 +67,7 @@ The name of the .dbg file. You can use a partial path.
### -param DebugFilePath [out]
-The fully qualified path of the .dbg file. This buffer must be at least MAX_PATH characters.
+The fully qualified path of the .dbg file. This buffer must be at least MAX_PATH+1 characters.
### -param Callback [in, optional]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-symfinddebuginfofilew.md b/sdk-api-src/content/dbghelp/nf-dbghelp-symfinddebuginfofilew.md
index 21c22b4c2b0b..344db2310172 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-symfinddebuginfofilew.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-symfinddebuginfofilew.md
@@ -67,7 +67,7 @@ The name of the .dbg file. You can use a partial path.
### -param DebugFilePath [out]
-The fully qualified path of the .dbg file. This buffer must be at least MAX_PATH characters.
+The fully qualified path of the .dbg file. This buffer must be at least MAX_PATH+1 characters.
### -param Callback [in, optional]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-symfindexecutableimage.md b/sdk-api-src/content/dbghelp/nf-dbghelp-symfindexecutableimage.md
index 326c5ec9e48e..837e4b405afc 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-symfindexecutableimage.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-symfindexecutableimage.md
@@ -67,7 +67,7 @@ The name of the executable file. You can use a partial path.
### -param ImageFilePath [out]
-The fully qualified path of the executable file. This buffer must be at least MAX_PATH characters.
+The fully qualified path of the executable file. This buffer must be at least MAX_PATH+1 characters.
### -param Callback [in]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-symfindexecutableimagew.md b/sdk-api-src/content/dbghelp/nf-dbghelp-symfindexecutableimagew.md
index c03f09863aa7..e9e601ca3382 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-symfindexecutableimagew.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-symfindexecutableimagew.md
@@ -67,7 +67,7 @@ The name of the executable file. You can use a partial path.
### -param ImageFilePath [out]
-The fully qualified path of the executable file. This buffer must be at least MAX_PATH characters.
+The fully qualified path of the executable file. This buffer must be at least MAX_PATH+1 characters.
### -param Callback [in]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-symfindfileinpath.md b/sdk-api-src/content/dbghelp/nf-dbghelp-symfindfileinpath.md
index 3f1eeadc91f4..00cf2c68cd48 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-symfindfileinpath.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-symfindfileinpath.md
@@ -129,7 +129,7 @@ The id parameter is a pointer to a GUID.
### -param FoundFile [out]
-A pointer to a buffer that receives the fully qualified path to the symbol file. This buffer must be at least MAX_PATH characters.
+A pointer to a buffer that receives the fully qualified path to the symbol file. This buffer must be at least MAX_PATH+1 characters.
### -param callback [in, optional]
diff --git a/sdk-api-src/content/dbghelp/nf-dbghelp-symfindfileinpathw.md b/sdk-api-src/content/dbghelp/nf-dbghelp-symfindfileinpathw.md
index fbb0c8de3972..c55914d2785a 100644
--- a/sdk-api-src/content/dbghelp/nf-dbghelp-symfindfileinpathw.md
+++ b/sdk-api-src/content/dbghelp/nf-dbghelp-symfindfileinpathw.md
@@ -129,7 +129,7 @@ The id parameter is a pointer to a GUID.
### -param FoundFile [out]
-A pointer to a buffer that receives the fully qualified path to the symbol file. This buffer must be at least MAX_PATH characters.
+A pointer to a buffer that receives the fully qualified path to the symbol file. This buffer must be at least MAX_PATH+1 characters.
### -param callback [in, optional]