From b5a18c27a8e2cdfdfeee3b3d41dbeadb93e751b3 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Wed, 11 Nov 2015 12:48:51 +0000 Subject: [PATCH] BUG: ISstream: only check character if reading succeeded --- src/OpenFOAM/db/IOstreams/Sstreams/ISstreamI.H | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OpenFOAM/db/IOstreams/Sstreams/ISstreamI.H b/src/OpenFOAM/db/IOstreams/Sstreams/ISstreamI.H index 6135f51f46..2488bb04e3 100644 --- a/src/OpenFOAM/db/IOstreams/Sstreams/ISstreamI.H +++ b/src/OpenFOAM/db/IOstreams/Sstreams/ISstreamI.H @@ -2,8 +2,8 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation - \\/ M anipulation | + \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation + \\/ M anipulation | Copyright (C) 2015 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -59,7 +59,7 @@ inline Foam::ISstream& Foam::ISstream::get(char& c) is_.get(c); setState(is_.rdstate()); - if (c == '\n') + if (good() && c == '\n') { lineNumber_++; } -- GitLab