dd segfaults
Bug #64271 reported by
Alex Potter
This bug report is a duplicate of:
Bug #42264: language pack po files drop cflag comment which causes segfaults in e. g. 'dd'.
Edit
Remove
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Ubuntu |
New
|
Undecided
|
Unassigned |
Bug Description
I had cause to execute the init script /etc/init.d/urandom at the console and discovered that it reported a segfault while both starting and stopping.
The following script reproduces the problem consistently:
#!/bin/sh
FILE=/tmp/key
if ! [ -f $FILE ] ; then
echo "creating $FILE"
touch $FILE
fi
dd if=/dev/urandom of=$FILE count=1
rm $FILE
#end
Output:
creating /tmp/key
1+0 records in
1+0 records out
/home/alexp/
To post a comment you must log in.