Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Albert Gräf
Gem
Commits
b2f1eeeb
Commit
b2f1eeeb
authored
Dec 06, 2017
by
IOhannes m zmölnig
Browse files
Prevent self-assignment
parent
8f4e8193
Changes
1
Show whitespace changes
Inline
Side-by-side
src/Gem/Dylib.cpp
View file @
b2f1eeeb
...
...
@@ -277,6 +277,8 @@ GemDylib::~GemDylib(void) {
}
GemDylib
&
GemDylib
::
operator
=
(
const
GemDylib
&
org
)
{
if
(
&
org
==
this
)
return
*
this
;
if
(
m_handle
)
delete
m_handle
;
m_handle
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment