Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tcsh
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Debian
tcsh
Commits
29ae351c
Commit
29ae351c
authored
Aug 07, 2010
by
Lucas Nussbaum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-add 12_unknown_lscolors.patch. Closes segfault when removed. Closes: #592089.
parent
7b2cd8c7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
0 deletions
+32
-0
debian/changelog
debian/changelog
+7
-0
debian/patches/12_unknown_lscolors.patch
debian/patches/12_unknown_lscolors.patch
+24
-0
debian/patches/series
debian/patches/series
+1
-0
No files found.
debian/changelog
View file @
29ae351c
tcsh (6.17.02-3) unstable; urgency=low
* Re-add 12_unknown_lscolors.patch. Closes segfault when removed.
Closes: #592089.
-- Lucas Nussbaum <lucas@lucas-nussbaum.net> Sat, 07 Aug 2010 10:08:06 -0400
tcsh (6.17.02-2) unstable; urgency=low
* Set $COLUMNS and $LINES in csh.{cshrc,login}. Closes: #580498. LP: #546032
...
...
debian/patches/12_unknown_lscolors.patch
0 → 100644
View file @
29ae351c
Author: Franz Pletz <fpletz@franz-pletz.org>
Description: Don't die on unknown LS_COLORS values
Removing the patch causes a segfault when dircolors is set by coreutils' dircolors.
Debian-Bug: #592089
--- a/tw.color.c
+++ b/tw.color.c
@@ -239,13 +239,10 @@
parseLS_COLORS(const Char *value)
if ((Char)variables[i].variable[0] == (v[0] & CHAR) &&
(Char)variables[i].variable[1] == (v[1] & CHAR))
break;
- if (i < nvariables) {
- v += 3;
+ v += 3;
+ if (i < nvariables)
getstring(&c, &v, &variables[i].color, ':');
- continue;
- }
- else
- stderror(ERR_BADCOLORVAR, v[0], v[1]);
+ continue;
}
break;
}
debian/patches/series
View file @
29ae351c
...
...
@@ -6,3 +6,4 @@ disable-test-notty.patch
disable-test-nice.patch
fix-make-catalogs.patch
disable-lexical.at-31.patch
12_unknown_lscolors.patch
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