view debian-build/postrm @ 10939:55c9903bd51c

simple fix for buffer overflow (remotely exploitable). feel free to commit a better fix if you don't like it.
author rfelker
date Thu, 25 Sep 2003 00:36:04 +0000
parents 33f43b0f24f7
children
line wrap: on
line source

#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
  if [ -d /etc/mplayer/ ]; then
    rm -rf /etc/mplayer/
  fi
fi