corriger un bug avec l'initialisation de HEADERS et ORIG{HEADERS,FIELDS}
This commit is contained in:
parent
52388896bf
commit
f619040e1f
|
@ -393,6 +393,12 @@ filterfields(skipfs, addfs)
|
||||||
|
|
||||||
__AWKCSV_FUNCTIONS='
|
__AWKCSV_FUNCTIONS='
|
||||||
BEGIN {
|
BEGIN {
|
||||||
|
# Forcer ici le type tableau pour les variables ci-dessous. Sinon, leur
|
||||||
|
# utilisation dans une section BEGIN{} provoque une erreur fatale, parce
|
||||||
|
# qu"ils ne sont déclarés que dans des fonctions
|
||||||
|
array_new(HEADERS)
|
||||||
|
array_new(ORIGHEADERS)
|
||||||
|
array_new(ORIGFIELDS)
|
||||||
array_new(__DONE_ONCE)
|
array_new(__DONE_ONCE)
|
||||||
}
|
}
|
||||||
function do_once(key) {
|
function do_once(key) {
|
||||||
|
|
Loading…
Reference in New Issue