Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CryoCooler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Tango devices
Temperature
CryoCooler
Commits
d0c7d10e
Commit
d0c7d10e
authored
Jun 10, 2009
by
Jean Coquet
Browse files
Options
Downloads
Patches
Plain Diff
bug fix mem leak
parent
62e67d9d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/HeaterVessel.cpp
+13
-2
13 additions, 2 deletions
src/HeaterVessel.cpp
src/cryo_support/HWProxy.cpp
+5
-0
5 additions, 0 deletions
src/cryo_support/HWProxy.cpp
with
18 additions
and
2 deletions
src/HeaterVessel.cpp
+
13
−
2
View file @
d0c7d10e
static
const
char
*
RcsId
=
"$Header: /users/chaize/newsvn/cvsroot/Vacuum/CryoCooler/src/HeaterVessel.cpp,v 1.
3
2009-0
3-31 09:00:32
jean_coquet Exp $"
;
static
const
char
*
RcsId
=
"$Header: /users/chaize/newsvn/cvsroot/Vacuum/CryoCooler/src/HeaterVessel.cpp,v 1.
4
2009-0
6-10 15:33:05
jean_coquet Exp $"
;
//+=============================================================================
//
// file : HeaterVessel.cpp
...
...
@@ -13,9 +13,15 @@ static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/Vacuum/CryoCoo
//
// $Author: jean_coquet $
//
// $Revision: 1.
3
$
// $Revision: 1.
4
$
//
// $Log: not supported by cvs2svn $
// Revision 1.3 2009/03/31 09:00:32 jean_coquet
// better visualisation of errors
// improvements
// Tested with my test PLC
// to be tested with real CryoCooler
//
// Revision 1.2 2009/03/11 08:05:33 jean_coquet
// mise au point a koln chezACCEL
//
...
...
@@ -97,6 +103,11 @@ void HeaterVessel::delete_device()
// Delete device's allocated object
DELETE_SCALAR_ATTRIBUTE
(
attr_pressure_read
);
DELETE_SCALAR_ATTRIBUTE
(
attr_automatic_read
);
if
(
hv
)
{
delete
hv
;
hv
=
0
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/cryo_support/HWProxy.cpp
+
5
−
0
View file @
d0c7d10e
...
...
@@ -120,6 +120,11 @@ namespace CryoCooler_ns
delete
DB_end
;
DB_end
=
0
;
}
if
(
DB_write
)
{
delete
DB_write
;
DB_write
=
0
;
}
}
break
;
//- TASK_PERIODIC ===================
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment