Fix off-by-one allocation error in PasswordFromFile(), per Gordon Runkle.
authorTom Lane
Fri, 30 Aug 2002 05:28:50 +0000 (05:28 +0000)
committerTom Lane
Fri, 30 Aug 2002 05:28:50 +0000 (05:28 +0000)
src/interfaces/libpq/fe-connect.c

index b4667cfa437fac6754bdc7b7e6b59cdfd67b6758..f7fd94f87789d4684d7492863729133bf2c02bd4 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.199 2002/08/29 23:06:32 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.200 2002/08/30 05:28:50 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -2953,8 +2953,7 @@ PasswordFromFile(char *hostname, char *port, char *dbname,
                (t = pwdfMatchesString(t, dbname)) == NULL ||
                (t = pwdfMatchesString(t, username)) == NULL)
            continue;
-       ret=(char *)malloc(sizeof(char)*strlen(t));
-       strncpy(ret, t, strlen(t));
+       ret = strdup(t);
        fclose(fp);
        return ret;
    }