Skip to content

Commit e3adf44

Browse files
author
Yvan Fournier
committed
PLE: fix in ple_locator_extend_search and update version info.
git-svn-id: https://svn.isais.edf.fr/mfee/saturne/trunk@11081 e44c5d27-f830-0410-8ce8-974f7a764be6
1 parent bd3f703 commit e3adf44

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

NEWS

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
Release 2.0.2 (March 16, 2018)
2+
==============================
3+
4+
Bug fixes:
5+
----------
16

2-
Trunk (unreleased)
3-
==================
7+
- Fix in ple_locator_extend_search() for non-local cases.
48

59
Changes:
610
--------

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file is part of the "Parallel Location and Exchange" library,
55
# intended to provide mesh or particle-based code coupling services.
66
#
7-
# Copyright (C) 2005-2017 EDF S.A.
7+
# Copyright (C) 2005-2018 EDF S.A.
88
#
99
# This library is free software; you can redistribute it and/or
1010
# modify it under the terms of the GNU Lesser General Public
@@ -30,7 +30,7 @@ m4_define([ple_licence_c_comment],
3030
This file is part of the "Parallel Location and Exchange" library,
3131
intended to provide mesh or particle-based code coupling services.
3232
33-
Copyright (C) 2005-2017 EDF
33+
Copyright (C) 2005-2018 EDF
3434
3535
This library is free software; you can redistribute it and/or
3636
modify it under the terms of the GNU Lesser General Public
@@ -49,7 +49,7 @@ m4_define([ple_licence_c_comment],
4949

5050
m4_define([ple_major_version], [2])
5151
m4_define([ple_minor_version], [0])
52-
m4_define([ple_release_version], [3])
52+
m4_define([ple_release_version], [2])
5353
m4_define([ple_version_extra], [])
5454
m4_define([ple_version_string],
5555
[ple_major_version.ple_minor_version.ple_release_version@&t@ple_version_extra])

src/ple_locator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ _locate_distant(ple_locator_t *this_locator,
964964
if (_n_points < n_points) {
965965

966966
PLE_MALLOC(_point_list, _n_points, ple_lnum_t);
967-
_point_list_p = point_list;
967+
_point_list_p = _point_list;
968968

969969
_n_points = 0;
970970
if (point_list == NULL) {

0 commit comments

Comments
 (0)