]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/netrc.cc
German manpage translation (Chris Leick)
[apt.git] / apt-pkg / contrib / netrc.cc
index 9aa1376dc7ae83600d0c471226c42336fe53bb96..56e59d84b89b64635158e6a74db0156260c753a2 100644 (file)
@@ -14,7 +14,9 @@
 #include <config.h>
 
 #include <apt-pkg/configuration.h>
+#include <apt-pkg/strutl.h>
 #include <apt-pkg/fileutl.h>
+
 #include <iostream>
 #include <stdio.h>
 #include <stdlib.h>
@@ -66,8 +68,7 @@ int parsenetrc (char *host, char *login, char *password, char *netrcfile = NULL)
     if (!home)
       return -1;
 
-    asprintf (&netrcfile, "%s%s%s", home, DIR_CHAR, NETRC);
-    if(!netrcfile)
+    if (asprintf (&netrcfile, "%s%s%s", home, DIR_CHAR, NETRC) == -1 || netrcfile == NULL)
       return -1;
     else
       netrc_alloc = true;