Skip to content

Commit a3a7602

Browse files
committed
fixed view
1 parent 853eca8 commit a3a7602

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/c-runtime-library/crt-debugging-techniques.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,5 +169,5 @@ If the hook handles the message in question completely, so that no further repor
169169

170170
## See also
171171

172-
- [Debugging Native Code](/visualstudio/debugger/debugging-native-code?view=vs-2022)
173-
- [Debugger Security](/visualstudio/debugger/debugger-security?view=vs-2022)
172+
- [Debugging Native Code](/visualstudio/debugger/debugging-native-code)
173+
- [Debugger Security](/visualstudio/debugger/debugger-security)

docs/c-runtime-library/find-memory-leaks-using-the-crt-library.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ You can use the allocation number to set a breakpoint on the memory allocation.
216216

217217
After you set a breakpoint on a memory-allocation number, continue to debug. Make sure to run under the same conditions, so the memory-allocation number doesn't change. When your program breaks at the specified memory allocation, use the **Call Stack** window and other debugger windows to determine the conditions under which the memory was allocated. Then, you can continue execution to observe what happens to the object and determine why it isn't correctly deallocated.
218218

219-
Setting a data breakpoint on the object might also be helpful. For more information, see [Using breakpoints](/visualstudio/debugger/using-breakpoints?view=vs-2022).
219+
Setting a data breakpoint on the object might also be helpful. For more information, see [Using breakpoints](/visualstudio/debugger/using-breakpoints).
220220

221221
You can also set memory-allocation breakpoints in code. You can set:
222222

@@ -281,5 +281,5 @@ One technique for finding memory leaks begins by placing `_CrtMemCheckpoint` cal
281281
## See also
282282
283283
- [CRT debug heap details](./crt-debug-heap-details.md)
284-
- [Debugger security](/visualstudio/debugger/debugger-security?view=vs-2022)
285-
- [Debugging native code](/visualstudio/debugger/debugging-native-code?view=vs-2022)
284+
- [Debugger security](/visualstudio/debugger/debugger-security)
285+
- [Debugging native code](/visualstudio/debugger/debugging-native-code)

docs/data/odbc/odbc-and-mfc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 98f02fd7-1235-437b-89a9-edfd0fc797f7
88
# ODBC and MFC
99

1010
> [!NOTE]
11-
> To use the MFC database classes, you must have the appropriate ODBC driver for your data source. The lastest Microsoft ODBC driver for SQL Server is [Microsoft ODBC Driver 18 for SQL Server](/sql/connect/odbc/download-odbc-driver-for-sql-server?view=sql-server-ver16). Most database vendors provide an ODBC driver for Windows.
11+
> To use the MFC database classes, you must have the appropriate ODBC driver for your data source. The lastest Microsoft ODBC driver for SQL Server is [Microsoft ODBC Driver 18 for SQL Server](/sql/connect/odbc/download-odbc-driver-for-sql-server. Most database vendors provide an ODBC driver for Windows.
1212
1313
This topic introduces the main concepts of the Microsoft Foundation Classes (MFC) library's ODBC-based database classes and provides an overview of how the classes work together. For more information about ODBC and MFC, see the following topics:
1414

0 commit comments

Comments
 (0)