X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/3fa615778e441b4ea6c43baa2986efac9ab85d0e..7bd029472d96162f71f61df67baedc00fc0bb1a8:/mac/macmisc.c diff --git a/mac/macmisc.c b/mac/macmisc.c index b2479781..7255b3d9 100644 --- a/mac/macmisc.c +++ b/mac/macmisc.c @@ -1,4 +1,4 @@ -/* $Id: macmisc.c,v 1.2 2003/02/20 22:31:52 ben Exp $ */ +/* $Id: macmisc.c,v 1.3 2003/03/29 23:07:55 ben Exp $ */ /* * Copyright (c) 1999, 2003 Ben Harris * All rights reserved. @@ -119,7 +119,7 @@ const char *filename_to_str(const Filename *fn) char *newpath; if (path != NULL) sfree(path); - path = smalloc(fn->fss.name[0]); + path = snewn(fn->fss.name[0], char); p2cstrcpy(path, fn->fss.name); pb.dirInfo.ioNamePtr = dirname; pb.dirInfo.ioVRefNum = fn->fss.vRefNum; @@ -130,7 +130,7 @@ const char *filename_to_str(const Filename *fn) err = PBGetCatInfoSync(&pb); /* XXX Assume not A/UX */ - newpath = smalloc(strlen(path) + dirname[0] + 2); + newpath = snewn(strlen(path) + dirname[0] + 2, char); p2cstrcpy(newpath, dirname); strcat(newpath, ":"); strcat(newpath, path);