Merge branch 'minpoints' of UBB/points into master

This commit is contained in:
Chris Cromer 2018-12-08 23:28:37 -03:00 committed by Gitea
commit 1368d587f7
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ int read_file(char *filename, point_t **points, unsigned int *n) {
buffer = NULL;
size = 0;
}
if (j < *n) {
if (j < *n || *n < 2) {
fprintf(stderr, "Error: No hay suficiente puntos!\n");
return 9;
}