summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2008-12-27 02:36:24 +0000
committerBen Laurie <ben@openssl.org>2008-12-27 02:36:24 +0000
commitdde5b979d2a3d69767e86c8abfffda82538c32a0 (patch)
tree8619947fedab00a4d147e790feb469f06a2212b6 /crypto
parent57a6ac7c4fc6f8854249cd91bce81472412d913d (diff)
Remove dead code. (Coverity ID 2)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/dso/dso_lib.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/crypto/dso/dso_lib.c b/crypto/dso/dso_lib.c
index 75ac66707d..8a15b794ab 100644
--- a/crypto/dso/dso_lib.c
+++ b/crypto/dso/dso_lib.c
@@ -399,13 +399,6 @@ char *DSO_merge(DSO *dso, const char *filespec1, const char *filespec2)
DSOerr(DSO_F_DSO_MERGE,ERR_R_PASSED_NULL_PARAMETER);
return(NULL);
}
- if(filespec1 == NULL)
- filespec1 = dso->filename;
- if(filespec1 == NULL)
- {
- DSOerr(DSO_F_DSO_MERGE,DSO_R_NO_FILE_SPECIFICATION);
- return(NULL);
- }
if((dso->flags & DSO_FLAG_NO_NAME_TRANSLATION) == 0)
{
if(dso->merger != NULL)