Apply a little dab of bit caulk to keep those beggars

from leaking out.

Noticed by: bde
This commit is contained in:
Steve Price 1996-12-23 22:16:35 +00:00
parent 9e08703418
commit 79e02527ef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=20886

View File

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: cd.c,v 1.8 1996/12/21 22:09:38 steve Exp $
* $Id: cd.c,v 1.9 1996/12/23 05:31:48 steve Exp $
*/
#ifndef lint
@ -235,11 +235,7 @@ pwdcmd(argc, argv)
char *
getpwd()
{
char *buf;
if (curdir)
return (curdir);
if ((buf = getcwd(NULL, 0)) == NULL)
return (NULL);
return ((curdir = savestr(buf)));
return (getcwd(NULL, 0));
}