summaryrefslogtreecommitdiff
path: root/vecteur.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vecteur.cpp')
-rw-r--r--vecteur.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/vecteur.cpp b/vecteur.cpp
index 56b59ed..fdb153f 100644
--- a/vecteur.cpp
+++ b/vecteur.cpp
@@ -34,6 +34,7 @@ void Vecteur::afficher(ostream &s){
};
bool Vecteur::ajouterForme(Forme *f) {
+ if (f == NULL) return false;
if (taille == capacite) {
// Double the size of the array
int newCapacite = capacite * 2;