Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
robotpkg-wip
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
robotpkg-wip
Commits
cdb294ba
Commit
cdb294ba
authored
10 years ago
by
Anthony Mallet
Browse files
Options
Downloads
Patches
Plain Diff
[wip/optitrack-genom3] Add upstream patch fixing an issue with unset_logfile
Bump PKGREVISION
parent
07aa515a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
optitrack-genom3/Makefile
+1
-0
1 addition, 0 deletions
optitrack-genom3/Makefile
optitrack-genom3/distinfo
+1
-0
1 addition, 0 deletions
optitrack-genom3/distinfo
optitrack-genom3/patches/patch-aa
+13
-0
13 additions, 0 deletions
optitrack-genom3/patches/patch-aa
with
15 additions
and
0 deletions
optitrack-genom3/Makefile
+
1
−
0
View file @
cdb294ba
...
...
@@ -2,6 +2,7 @@
# Created: Anthony Mallet on Fri, 28 Mar 2014
#
PKGREVISION
=
1
DISTNAME
=
optitrack-genom3-1.0
CATEGORIES
=
interfaces
MASTER_SITES
=
${
MASTER_SITE_OPENROBOTS:
=
${
PKGBASE
}
/
}
...
...
This diff is collapsed.
Click to expand it.
optitrack-genom3/distinfo
+
1
−
0
View file @
cdb294ba
SHA1 (optitrack-genom3-1.0.tar.gz) = bd779a9c53afcf6affc82c4641a01bf7d74ab115
RMD160 (optitrack-genom3-1.0.tar.gz) = 57066952a1714619c888a40084131cc1fa2b9f6c
Size (optitrack-genom3-1.0.tar.gz) = 317631 bytes
SHA1 (patch-aa) = 1957881955ff26228f4d46822d66fe66e1019828
This diff is collapsed.
Click to expand it.
optitrack-genom3/patches/patch-aa
0 → 100644
+
13
−
0
View file @
cdb294ba
NULLify log parameter after unset_logfile
diff --git codels/optitrack_codels.c codels/optitrack_codels.c
index b3d5876..f08bff4 100644
--- codels/optitrack_codels.c
+++ codels/optitrack_codels.c
@@ -102,5 +102,6 @@
unset_logfile(optitrack_log_s **log)
if (!log || !*log) return genom_ok;
if ((*log)->f) fclose((*log)->f);
free(*log);
+ *log = NULL;
return genom_ok;
}
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