Bug 1066643
| Summary: | [abrt] bash: __gconv_transform_utf8_internal(): bash killed by SIGSEGV | ||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Dj YB <yehielb> | ||||||||||||||||||||||||
| Component: | bash | Assignee: | Ondrej Oprala <ooprala> | ||||||||||||||||||||||||
| Status: | CLOSED INSUFFICIENT_DATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||||||||||||||||||||
| Severity: | unspecified | Docs Contact: | |||||||||||||||||||||||||
| Priority: | unspecified | ||||||||||||||||||||||||||
| Version: | 20 | CC: | admiller, ooprala, ovasik, yehielb | ||||||||||||||||||||||||
| Target Milestone: | --- | ||||||||||||||||||||||||||
| Target Release: | --- | ||||||||||||||||||||||||||
| Hardware: | x86_64 | ||||||||||||||||||||||||||
| OS: | Unspecified | ||||||||||||||||||||||||||
| URL: | https://retrace.fedoraproject.org/faf/reports/bthash/bc7bf523260e09313fa04bbe314e23f0a4454af1 | ||||||||||||||||||||||||||
| Whiteboard: | abrt_hash:5ff314bcc34279c3ac3978ba885ede3d07441ad3 | ||||||||||||||||||||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||||||||||||||||||||
| Doc Text: | Story Points: | --- | |||||||||||||||||||||||||
| Clone Of: | Environment: | ||||||||||||||||||||||||||
| Last Closed: | 2014-05-19 08:18:42 UTC | Type: | --- | ||||||||||||||||||||||||
| Regression: | --- | Mount Type: | --- | ||||||||||||||||||||||||
| Documentation: | --- | CRM: | |||||||||||||||||||||||||
| Verified Versions: | Category: | --- | |||||||||||||||||||||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||||||||||||||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||||||||||||||||||||
| Embargoed: | |||||||||||||||||||||||||||
| Attachments: |
|
||||||||||||||||||||||||||
|
Description
Dj YB
2014-02-18 19:20:10 UTC
Created attachment 864716 [details]
File: backtrace
Created attachment 864717 [details]
File: cgroup
Created attachment 864718 [details]
File: core_backtrace
Created attachment 864719 [details]
File: dso_list
Created attachment 864720 [details]
File: environ
Created attachment 864721 [details]
File: exploitable
Created attachment 864722 [details]
File: limits
Created attachment 864723 [details]
File: maps
Created attachment 864724 [details]
File: open_fds
Created attachment 864725 [details]
File: proc_pid_status
Created attachment 864726 [details]
File: var_log_messages
Hi and thanks for the report. ABRT's output doesn't give me much to work with. Could you please provide your remove_spaces_rec.sh script? Also, is this a recurring issue, or just a one time crash? Thanks. (In reply to Ondrej Oprala from comment #12) > Hi and thanks for the report. > ABRT's output doesn't give me much to work with. Could you please provide > your remove_spaces_rec.sh script? > Also, is this a recurring issue, or just a one time crash? > > Thanks. Hi I don't really remember reporting this, could be automatic...? Anyway I cannot find a script with that name, but it could be that I have changed the script name. so here is what I got... hope that helps. Yehiel #!/bin/bash rename() { for i in "$1/"*; do if [ -d "$i" ]; then # cd "$i"; # echo "d pwd=`pwd`"; rename "$i" "$2" "$3"; elif [ -f "$i" ]; then new=`echo $i|sed 's/'$2'/'$3'/g'`; if [ "$new" != "$i" ]; then echo "2=$2; 3=$3; renaming $i -> $new"; mv "$i" $new; fi else #echo "pwd=`pwd`"; echo "$i not a file!"; fi done } echo "renaming $1"; rename "$1" "$2" "$3" |