История изменений
Исправление system-root, (текущая версия) :
это оправдано если
running=true
while [ $running = true ]
...
running=false
...
len = tempBuffer.readUInt8(pos)
while (len != 0){
arr.push((tempBuffer.slice(pos + 1, pos + len + 1)).toString('ascii'))
var pos = (len + pos + 1)
var len = tempBuffer.readUInt8(pos)
}
Исходная версия system-root, :
это оправдано если
running=true
while [ $running = true ]
...
running=false
...
len = tempBuffer.readUInt8(pos)
while (len != 0){
arr.push((tempBuffer.slice(pos + 1, pos + len + 1)).toString('ascii'))
var pos = (len + pos + 1)
var len = tempBuffer.readUInt8(pos)
}