It appears to be a bug caused by using this:
system("lsof $backing_store &>/dev/null");
instead of:
system("lsof $backing_store >/dev/null 2>&1");
It appears to be a bug caused by using this:
instead of: