mirror of
https://github.com/openbsd/src.git
synced 2025-01-10 06:47:55 -08:00
Avoid divide by zero in visual effects; spotted by Tobias Stoeckmann.
This commit is contained in:
parent
a0dda5765e
commit
cc8b5a717a
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: fdformat.c,v 1.14 2006/04/02 00:50:42 deraadt Exp $ */
|
||||
/* $OpenBSD: fdformat.c,v 1.15 2006/08/07 18:20:57 miod Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (C) 1992-1994 by Joerg Wunsch, Dresden
|
||||
@ -281,6 +281,8 @@ main(int argc, char *argv[])
|
||||
|
||||
bytes_per_track = fdt.sectrac * (1<<fdt.secsize) * 128;
|
||||
tracks_per_dot = fdt.tracks * fdt.heads / 40;
|
||||
if (tracks_per_dot == 0)
|
||||
tracks_per_dot++;
|
||||
|
||||
if (verify_only) {
|
||||
if (!quiet)
|
||||
|
Loading…
Reference in New Issue
Block a user