aboutsummaryrefslogtreecommitdiff
path: root/gunzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'gunzip.c')
-rw-r--r--gunzip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gunzip.c b/gunzip.c
index c3960e953..65f435651 100644
--- a/gunzip.c
+++ b/gunzip.c
@@ -158,9 +158,9 @@ extern int gunzip_main(int argc, char **argv)
delete_old_file = TRUE;
extension = strrchr(if_name, '.');
- if (strcmp(extension, ".gz") == 0) {
+ if (extension && strcmp(extension, ".gz") == 0) {
length -= 3;
- } else if (strcmp(extension, ".tgz") == 0) {
+ } else if (extension && strcmp(extension, ".tgz") == 0) {
length -= 4;
} else {
error_msg_and_die("Invalid extension");