Skip to content

Commit 1839405

Browse files
authored
Merge pull request MicrosoftDocs#3054 from MicrosoftDocs/master
8/18/2020 AM Publish
2 parents e5a8d74 + a002853 commit 1839405

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/build/reference/creating-a-makefile-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,6 @@ The next time you open your makefile project in the Visual Studio development en
9898

9999
[Using IntelliSense](/visualstudio/ide/using-intellisense)<br>
100100
[NMAKE Reference](nmake-reference.md)<br>
101-
[How to: Create a C++ Project from Existing Code](../how-to-create-a-cpp-project-from-existing-code.md)
101+
[How to: Create a C++ Project from Existing Code](../how-to-create-a-cpp-project-from-existing-code.md)<br>
102102
[Special Characters in a Makefile](special-characters-in-a-makefile.md)<br/>
103103
[Contents of a Makefile](contents-of-a-makefile.md)<br/>

docs/code-quality/c26405.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 2034d961-3ec5-4184-bbef-aa792e4c03c0
88
---
99
# C26405 DONT_ASSIGN_TO_VALID
1010

11-
If an owner pointer already points to a valid memory buffer, it must not be assigned to another value without releasing its current resource first. Such assignment may lead to a resource leak even if the resource address is copied into some raw pointer (because raw pointers shouldn’t release resources).
11+
If an owner pointer already points to a valid memory buffer, it must not be assigned to another value without releasing its current resource first. Such assignment may lead to a resource leak even if the resource address is copied into some raw pointer (because raw pointers shouldn’t release resources). For more information, see the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r3-a-raw-pointer-a-t-is-non-owning).
1212

1313
## Example 1: Overwriting an owner in a loop
1414

0 commit comments

Comments
 (0)